post/api/v2/reports/schedules/{id}/pause
Pause a report schedule.
Disables a project-scoped local report schedule, clears next_run_at, and records a schedule-paused delivery event.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| id | path / required | No description provided.string |
Responses
200
application/jsonPaused report schedule.
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"cadence": {
"type": "string"
},
"recipients": {
"type": "array",
"items": {
"type": "string"
}
},
"reportConfig": {
"type": "object",
"additionalProperties": true
},
"enabled": {
"type": "boolean"
},
"createdById": {
"type": "string",
"nullable": true
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"nextRunAt": {
"type": "string",
"format": "date-time",
"nullable": true
},
"lastRunAt": {
"type": "string",
"format": "date-time",
"nullable": true
},
"lastRunStatus": {
"type": "string",
"nullable": true
}
}
}404
application/jsonReport schedule not found.
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
}
}Try it
Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.