Get Scheduled Build Details
GET
/api/v0/scheduled-builds/{scheduled_build_uuid}- Path parameters:
- Example request:
- BashCopied to clipboard
curl https://app.cloudcannon.com/api/v0/scheduled-builds/{scheduled_build_uuid} \ -H "X-API-KEY: <your-api-key>" - Responses:
200OK
JSONCopied to clipboard{ "uuid": "00000000-0000-0000-0000-000000000000", "id": 0, "name": "string", "filename": "string", "run_date": "2024-01-01T00:00:00Z", "period": 0, "from_source": true, "scheduled_at": "2024-01-01T00:00:00Z", "run_count": 0, "site_uuid": "00000000-0000-0000-0000-000000000000" }403Forbidden
JSONCopied to clipboard{ "error": "string" }
Delete Scheduled Build
DELETE
/api/v0/scheduled-builds/{scheduled_build_uuid}- Path parameters:
- Example request:
- BashCopied to clipboard
curl https://app.cloudcannon.com/api/v0/scheduled-builds/{scheduled_build_uuid} \ -X DELETE \ -H "X-API-KEY: <your-api-key>" - Responses:
204Deleted
401Unauthorized
JSONCopied to clipboard{ "error": "string" }403Forbidden
JSONCopied to clipboard{ "error": "string" }