Schedules
Read and set a configuration's run schedule.
This functionality is in preview mode - some of the features may not be fully operational yet.
Retrieves the cron schedule for a configuration.
- : Needed to trigger, schedule, monitor, and cancel import runs and to read configurations, streams, schedules, runs, and imported data.
The tenant you want to access.
mytenantThe configuration identifier.
7c9e6679-7425-40de-944b-e07fc1f90ae7The request was successful. The schedule is returned.
A cron schedule for a configuration.
The schedule identifier.
a3bb189e-8bf9-3888-9912-ace4e6543002The scheduled configuration.
7c9e6679-7425-40de-944b-e07fc1f90ae7A Spring cron expression with six fields.
0 0 2 * * *The IANA time zone the cron is evaluated in.
Europe/BerlinWhether the schedule is active.
trueThe next fire time.
2026-07-28T00:00:00.000ZNo schedule is configured for the configuration.
Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
Internal Service Error occurred.
GET /importtool/{tenant}/configs/{configId}/schedule HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
"configId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"cron": "0 0 2 * * *",
"timezone": "Europe/Berlin",
"enabled": true,
"nextFireAt": "2026-07-28T00:00:00.000Z"
}This functionality is in preview mode - some of the features may not be fully operational yet.
Creates or updates the cron schedule (cron expression, time zone, and enabled flag) that runs a configuration automatically.
- : Needed to trigger, schedule, monitor, and cancel import runs and to read configurations, streams, schedules, runs, and imported data.
The tenant you want to access.
mytenantThe configuration identifier.
7c9e6679-7425-40de-944b-e07fc1f90ae7A cron schedule for a configuration.
The schedule identifier.
a3bb189e-8bf9-3888-9912-ace4e6543002The scheduled configuration.
7c9e6679-7425-40de-944b-e07fc1f90ae7A Spring cron expression with six fields.
0 0 2 * * *The IANA time zone the cron is evaluated in.
Europe/BerlinWhether the schedule is active.
trueThe next fire time.
2026-07-28T00:00:00.000ZThe request was successful. The schedule has been saved.
A cron schedule for a configuration.
The schedule identifier.
a3bb189e-8bf9-3888-9912-ace4e6543002The scheduled configuration.
7c9e6679-7425-40de-944b-e07fc1f90ae7A Spring cron expression with six fields.
0 0 2 * * *The IANA time zone the cron is evaluated in.
Europe/BerlinWhether the schedule is active.
trueThe next fire time.
2026-07-28T00:00:00.000ZThe cron expression or timezone value is invalid. The service expects a six-field cron expression (second minute hour day-of-month month day-of-week). A five-field expression such as 0 * * * * is rejected. The service does not store it.
Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
The requested resource does not exist.
Internal Service Error occurred.
PUT /importtool/{tenant}/configs/{configId}/schedule HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 64
{
"cron": "0 0 2 * * *",
"timezone": "Europe/Berlin",
"enabled": true
}{
"id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
"configId": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"cron": "0 0 2 * * *",
"timezone": "Europe/Berlin",
"enabled": true,
"nextFireAt": "2026-07-28T00:00:00.000Z"
}This functionality is in preview mode - some of the features may not be fully operational yet.
Removes the schedule. The configuration then runs only when it is triggered.
The request is idempotent. Removing a schedule that does not exist also returns 204. Unlike creating a schedule, this request does not require the configuration to exist. Use it to remove a schedule that remains after the configuration is deleted.
- : Needed to trigger, schedule, monitor, and cancel import runs and to read configurations, streams, schedules, runs, and imported data.
The tenant you want to access.
mytenantThe configuration identifier.
7c9e6679-7425-40de-944b-e07fc1f90ae7The schedule has been removed. The configuration now runs only when triggered.
No content
Given request is unauthorized - the authorization token is invalid or has expired. Details will be provided in the response payload.
Given authorization scopes are not sufficient and do not match scopes required by the endpoint.
Internal Service Error occurred.
DELETE /importtool/{tenant}/configs/{configId}/schedule HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
No content
Last updated
Was this helpful?

