v1
latestOpenAPI 3.0.02026-07-136452257.6 KBUpdate import schedule
Updates an existing scheduled import configuration. You can modify the start time, run interval, or callback URL.
put/importsource/{importSourceId}/importschedule/{importScheduleId}
Path parameters
importSourceIdstring required
The ID of the import source
importScheduleIdstring required
The ID of the import schedule to update
Request body
Example request
{
"startTime": "2024-01-15T02:00:00Z",
"runInterval": "DAILY",
"callbackUrl": "https://example.com/webhook/import-complete"
}Response
Import schedule updated successfully
Example response
{
"id": "a8f5f167-a7e1-4b3a-9e4f-2c3d4e5f6a7b",
"importSourceId": "b9f5f167-a7e1-4b3a-9e4f-2c3d4e5f6a7c",
"startTime": "2024-01-15T02:00:00Z",
"runInterval": "DAILY",
"created": "2024-01-10T10:30:00Z",
"updated": "2024-01-12T14:45:00Z",
"collectionId": "c7d8e9f0-1234-5678-9abc-def012345678"
}