Get Scheduler

Returns details of a specific scheduler.

Authentication

This endpoint is public. No authentication required.

Path Parameters

Parameter Type Description
id string The unique identifier of the scheduler

Example Request

1curl "https://api.hola.cloud/schedulers/sched-a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Example Response

1HTTP/1.1 200 OK
2Content-Type: application/json
1{
2  "id": "sched-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
3  "display_name": "my-scheduler",
4  "ready": true,
5  "scheduled": 5,
6  "inflight": 0,
7  "created_at": "2025-06-20T10:00:00Z",
8  "updated_at": "2025-06-21T08:30:00Z"
9}

Error Codes

Status Code Description
404 not_found Scheduler not found
500 internal_error Internal server error

Comments

Leave a comment