curl --request PATCH \
--url https://api.example.com/api/core/data_sync/{use_case_id}/schedule \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_name": "<string>",
"target_uri": "<string>",
"body": {},
"selected_days": [
"<string>"
],
"hour": 123,
"minute": 123,
"timezone": "<string>"
}
'