Scheduler API¶
The scheduler API manages recurring trigger definitions.
Endpoints¶
GET /api/schedulesPOST /api/schedulesGET /api/schedules/{id}PUT /api/schedules/{id}DELETE /api/schedules/{id}GET /api/schedules/logs
Required Headers¶
X-InfraLynx-Actor-IdX-InfraLynx-Role-IdsX-InfraLynx-Tenant-Idoptional, defaults to platform
Example Create Payload¶
{
"name": "Daily topology refresh",
"cronExpression": "0 6 * * *",
"timezone": "UTC",
"jobType": "core.echo",
"payload": {
"message": "scheduled refresh"
},
"enabled": true
}
Access Model¶
schedule:readfor viewing schedules and logsschedule:writefor create, update, and delete