post/api/v2/reports/schedules/{id}/run
Run a report schedule now.
Generates a local report artifact immediately from an enabled project-scoped schedule and records schedule-run delivery events. Live sender/object-storage delivery remains gated by provider configuration.
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
202
application/jsonReport schedule run accepted.
{
"type": "object",
"additionalProperties": false,
"properties": {
"scheduleId": {
"type": "string"
},
"reportId": {
"type": "string"
},
"nextRunAt": {
"type": "string",
"format": "date-time"
},
"status": {
"type": "string",
"enum": [
"succeeded"
]
}
},
"required": [
"scheduleId",
"reportId",
"nextRunAt",
"status"
]
}404
application/jsonReport schedule not found.
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
}
}409
application/jsonReport schedule is paused.
{
"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.