Skip to main content
DELETE
/
v1
/
agent
/
:id
/
schedules
/
:scheduleId
Delete Schedule
curl --request DELETE \
  --url https://api.app.shinzo.ai/v1/agent/:id/schedules/:scheduleId \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.

Path Parameters

id
string
required
Agent UUID
scheduleId
string
required
Schedule UUID

Example Request

curl -X DELETE https://api.app.shinzo.ai/v1/agent/:id/schedules/:scheduleId \
  -H "Authorization: Bearer <token>"

Response

{
  "message": "Schedule deleted successfully"
}
This action is permanent and cannot be undone. Consider using the Toggle Schedule endpoint to temporarily disable a schedule instead.

Error Responses

404 Not Found

  • Agent not found, schedule not found, or you don’t have access

429 Too Many Requests

  • Rate limit exceeded

See Also