curl --request POST \
--url https://api-{region}.sesametime.com/schedule/v1/shifts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"abbreviation": "<string>",
"color": "<string>",
"shiftRanges": [
{
"startTime": "08:00",
"endTime": "14:00",
"order": 123
}
],
"isOnCall": true,
"isFullDay": true,
"onCallType": "<string>",
"countPlannedTime": true
}
'