Bulk schedule import via CSV — date format validation errors on non-US locale

I am trying to help my workforce team upload next month’s schedules into Genesys Cloud. We followed the template, but the bulk schedule import via CSV keeps failing with date format validation errors.

Our team is based in Europe, so Excel saves our dates as DD/MM/YYYY. Is there a way to force the system to accept our non-US locale, or do I have to manually reformat hundreds of spreadsheet rows every month? How do other international supervisors handle this?

# We bypass the UI completely to avoid Excel formatting nightmares.
# Convert your European CSV via bash/awk before uploading via CLI:

awk -F',' 'BEGIN{OFS=","} NR>1 { split($1, d, "/"); $1 = d[3]"-"d[2]"-"d[1]; print }' schedules.csv > formatted_schedules.csv

gc wfm schedules import create --file formatted_schedules.csv

Keep in mind the API strictly enforces ISO-8601 YYYY-MM-DD for all ingestion endpoints.