curl --request POST \
--url https://api2.rhombussystems.com/api/policy/updateSchedule \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'