Trigger a new run
const url = 'http://localhost:9477/api/tasks/example/run?wait_timeout=300';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"params":{"additionalProperty":"example"}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url 'http://localhost:9477/api/tasks/example/run?wait_timeout=300' \ --header 'Content-Type: application/json' \ --data '{ "params": { "additionalProperty": "example" } }'Triggers the task and returns the pending run immediately. Pass wait=true to instead hold the request open until the run finishes and return it with its exit code and end reason — a one-call alternative to triggering then polling.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Task name
Task name
Query Parameters
Section titled “Query Parameters ”Block until the run finishes and return the completed run (with exit_code and end_reason). Best for short tasks; long runs may exceed reverse-proxy timeouts — follow the log stream or poll instead.
Block until the run finishes and return the completed run (with exit_code and end_reason). Best for short tasks; long runs may exceed reverse-proxy timeouts — follow the log stream or poll instead.
With wait=true, the maximum seconds to hold the request open. On timeout the run keeps running and the response returns it in its current (non-terminal) state.
With wait=true, the maximum seconds to hold the request open. On timeout the run keeps running and the response returns it in its current (non-terminal) state.
Request Body
Section titled “Request Body ”object
A URL to the JSON Schema for this object.
Values for the task’s declared parameters, keyed by parameter identity. A null value omits that parameter (overriding its default); an empty string passes an empty value; an absent key uses the declared default.
object
Responses
Section titled “ Responses ”Created
object
A URL to the JSON Schema for this object.
Why a run ended. Set when status=ended.
object
Run lifecycle phase
How the run was triggered
Example
{ "$schema": "http://localhost:9477/schemas/Run.json", "end_reason": "success", "status": "pending", "triggered_by": "cron"}default
Section titled “default ”Error
object
A URL to the JSON Schema for this object.
A human-readable explanation specific to this occurrence of the problem.
Optional list of individual error details
object
Where the error occurred, e.g. ‘body.items[3].tags’ or ‘path.thing-id’
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
HTTP status code
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
A URI reference to human-readable documentation for the error.
Example
{ "$schema": "http://localhost:9477/schemas/ErrorModel.json", "detail": "Property foo is required but is missing.", "instance": "https://example.com/error-log/abc123", "status": 400, "title": "Bad Request", "type": "about:blank"}