Skip to main content
GET
/
jobs
/
{jobId}
Retrieve Job Run Output and Status
curl --request GET \
  --url https://sandbox.deck.co/api/v1/jobs/{jobId} \
  --header 'x-deck-client-id: <api-key>' \
  --header 'x-deck-secret: <api-key>'
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "job_code": "<string>",
  "status": "Running",
  "source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "source_name": "<string>",
  "created_at": 123,
  "updated_at": 123,
  "output": "<string>"
}

Authorizations

x-deck-client-id
string
header
required

Enter your client id

x-deck-secret
string
header
required

Enter your secret

Path Parameters

jobId
string<uuid>
required

Response

OK

job_id
string<uuid>
required

The unique identifier of the job.

job_code
string
required

The code representing the type of job executed.

status
enum<string>
required

The status of the job executed.

Available options:
Running,
Failed,
Completed,
Canceled
source_id
string<uuid>
required

The identifier of the source against which the job executed.

source_name
string
required

The name of the source against which the job executed.

created_at
integer<int64>
required

The time the job execution was created.

updated_at
integer<int64>
required

The time the job execution was updated.

output
string | null

The status of the job executed.