curl --request PUT \
--url https://{FUSION HOST}/api/scheduler/schedules/{id} \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"creatorType": "<string>",
"creatorId": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"repeatUnit": "MILLISECOND",
"interval": 123,
"active": true,
"callParams": {
"uri": "<string>",
"method": "GET",
"queryParams": {},
"headers": {},
"entity": {}
}
}'
Update a schedule’s configuration.
curl --request PUT \
--url https://{FUSION HOST}/api/scheduler/schedules/{id} \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"creatorType": "<string>",
"creatorId": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"repeatUnit": "MILLISECOND",
"interval": 123,
"active": true,
"callParams": {
"uri": "<string>",
"method": "GET",
"queryParams": {},
"headers": {},
"entity": {}
}
}'
The schedule ID.
JSON-formatted schedule configuration values.
The body is of type object
.
Was this page helpful?