Skip to main content
POST
/
api
/
v2
/
schedules
/
{schedule_id}
/
resume
Resume a schedule
curl --request POST \
  --url https://agp.eu.hcompany.ai/api/v2/schedules/{schedule_id}/resume \
  --header 'Authorization: Bearer <token>'
Resumes a paused schedule: the next fire is recomputed from now (fires missed while paused are not made up), pause_note clears, and the consecutive-failure counter resets. Resuming a schedule that is not paused is a no-op. Returns the updated schedule object with paused: false.

Path parameters

schedule_id
string
required
The schedule’s id (UUID).

Examples

curl -X POST "https://agp.eu.hcompany.ai/api/v2/schedules/9f8e7d6c-5b4a-4c3d-8e2f-1a0b9c8d7e6f/resume" \
  -H "Authorization: Bearer $HAI_API_KEY"

Errors

StatusCause
404No schedule with this id in your organization.