Need help? Get answers from the docs with Omni's in-app AI! Log in to your Omni instance and open the Omni Agent in the sidebar.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/connections/{connectionId}/schedules \
--header 'Authorization: Bearer <token>'{
"schedules": [
{
"scheduleId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"connectionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"schedule": "00 09 * * ? *",
"timezone": "America/New_York",
"description": "At 09:00 AM EDT",
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z",
"disabledAt": null
}
]
}Retrieves all schema refresh schedules configured for the specified connection. Each schedule uses a cron expression and timezone to define when the schema should be refreshed.
This endpoint requires Connection Admin permissions for the connection.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/connections/{connectionId}/schedules \
--header 'Authorization: Bearer <token>'{
"schedules": [
{
"scheduleId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"connectionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"schedule": "00 09 * * ? *",
"timezone": "America/New_York",
"description": "At 09:00 AM EDT",
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z",
"disabledAt": null
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
The unique identifier of the connection
Successfully retrieved schema refresh schedules
Show child attributes
Was this page helpful?