curl --request GET \
--url https://{FUSION HOST}/api/scheduler/schedules
[
{
"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": {}
}
}
]
Fetch the list of all matching schedules.
curl --request GET \
--url https://{FUSION HOST}/api/scheduler/schedules
[
{
"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 type of user that created the schedule.
The ID of the user that created the schedule.
successful operation
The response is of type object[]
.
Was this page helpful?