Report job result
This endpoint is runner-facing and restricted to service access tokens.
Scope: runner:exec | Token types: sat
Authorization
bearerAuth Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer adm_pat_...
In: header
Path Parameters
The job being reported on (UUID).
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://admiral.example.com/api/v1/runner/jobs/497f6eca-6276-4993-bfeb-53cbbbba6f08/result" \ -H "Content-Type: application/json" \ -d '{ "result": {} }'{ "ack": true}Send runner heartbeat POST
The runner is identified by the service access token -- the server resolves the runner from the SAT's binding. No runner_id is required in the request. This endpoint is runner-facing and restricted to service access tokens. Scope: `runner:exec` | Token types: `sat`
Retrieve state for a job GET
The server validates that the SAT's runner binding matches the runner assigned to this job. Returns PERMISSION_DENIED if they do not match. Returns NOT_FOUND if the job does not exist or has been cancelled. Maps to Terraform HTTP backend GET on the state address. Scope: `state:read` | Token types: `sat`