Skip to main content

Get job detail

GET 

/job/:id

Retrieve details of a specific job by its ID.

Request

Path Parameters

    id uuidrequired

    UUID of the job to retrieve.

Responses

The job details.

Schema

    id uuid

    Unique identifier of the job.

    status string

    Current status of the job.

    created string

    Creation timestamp.

    operation

    object

    The operation data.

    property name* any

    The operation data.

    result

    The result data if completed.

    changed booleannullable

    Whether the operation modified system state. Null for pending/failed jobs; true/false for completed jobs.

    error string

    Error message if failed.

    hostname string

    Agent hostname that processed the job.

    updated_at string

    Last update timestamp.

    responses

    object

    Per-agent response data for broadcast jobs.

    property name*

    object

    status string
    data

    Agent result data.

    changed booleannullable
    error string
    hostname string

    agent_states

    object

    Per-agent processing state for broadcast jobs.

    property name*

    object

    status string
    error string
    duration string

    timeline

    object[]

    Chronological sequence of job lifecycle events.

  • Array [

  • timestamp string

    ISO 8601 timestamp of the event.

    event string

    Event type (submitted, acknowledged, started, completed, failed, retried).

    hostname string

    Agent or source that generated the event.

    message string

    Human-readable description of the event.

    error string

    Error details if applicable.

  • ]

Loading...