Manually trigger one Schedule Run.
Request headers
|
Header |
Required |
Description |
|
|
Yes |
|
|
|
No |
|
|
|
No |
Optional idempotency key for unsafe requests. |
Path parameters
|
Parameter |
Type |
Required |
Description |
|
|
string |
Yes |
Forward Schedule ID. |
Example request
curl -s -X POST 'https://api.qoder.com.cn/api/v1/forward/schedules/sched_019f00112233445566778899aabbccdd/run' \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 200 OK
{
"id": "srun_019f00112233445566778899aabbccdd",
"schedule_id": "sched_019f00112233445566778899aabbccdd",
"identity_id": "idn_019eabc123",
"template_id": "tmpl_support",
"session_id": null,
"status": "pending",
"trigger_context": {
"type": "manual"
},
"error": null,
"result_payload": null,
"push_sink": null,
"push_status": "skipped",
"attempt": 1,
"triggered_at": "2026-06-22T12:00:00Z",
"started_at": null,
"completed_at": null,
"duration_ms": null,
"created_at": "2026-06-22T12:00:00Z"
}
Response fields
Returns the created Schedule Run object.
Errors
|
HTTP |
Type |
Code |
Trigger |
|
401 |
|
|
PAT invalid or expired. |
|
404 |
|
|
Schedule does not exist. |
|
409 |
|
|
Schedule is archived. |
|
409 |
|
|
Schedule is paused. |
Notes
-
If the Schedule has reached
execution.max_concurrent_runs, Forward still creates a Run withstatus=skippedanderror.type=concurrency_limit_reached. -
Poll Get Schedule Run until
statusiscompleted,failed, orskipped.