Retrieve a Task Run

View as Markdown

Get a Task Run by UUID. Set includeStats=true for derived per-phase outcome counts (current phase and cumulative run).

Task Runs are site-scoped; siteId must be the Site that owns the Task Run. Org must have an Infrastructure Provider entity. User must have authorization role with PROVIDER_ADMIN suffix.

Authentication

AuthorizationBearer
``` export JWT_BEARER_TOKEN="<jwt-bearer-token>" # Example org name: "acme-inc export ORG_NAME=<org-name> # Use the JWT bearer token in your API request auth header: curl -v -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_BEARER_TOKEN" https://nico-rest-api.nico.svc.cluster.local/v2/org/$ORG_NAME/nico/user/current ```

Path parameters

orgstringRequired
Name of the Org
idstringRequiredformat: "uuid"
UUID of the Task Run

Query parameters

siteIdstringRequiredformat: "uuid"

ID of the Site that owns the Task Run (Task Runs are site-scoped).

includeStatsbooleanOptionalDefaults to false

Include derived per-phase outcome stats on the response.

Response

OK
idstringformat: "uuid"
Unique identifier of the Task Run.
namestring

Human-readable name of the Task Run.

operationTypeenum

Type of operation this Task Run executes. Currently always FirmwareControl.

statusenum
Current lifecycle state of the Task Run.
statusReasonenum

Why the Task Run is paused or terminal (e.g. PhaseGate, SafetyGate). None when there is no qualifying reason.

totalPhasesinteger
Total number of phases the selected targets were divided into.
createddatetime
Timestamp when the Task Run was created.
updateddatetime
Timestamp when the Task Run was last updated.
descriptionstring

Optional free-form description.

operationCodestring

Operation code within the operation type (e.g. upgrade).

statusMessagestring

Optional human-readable detail for the current status.

starteddatetime or null
Timestamp when the Task Run started execution. Null before it starts.
finisheddatetime or null
Timestamp when the Task Run reached a terminal state. Null while active.
statsobject

Derived per-phase outcome stats. Present only on the single-Task-Run GET when includeStats=true; omitted otherwise.

Errors

400
Bad Request Error
403
Forbidden Error
404
Not Found Error