Skip to main content
GET
/
v1
/
jobs
/
runs
/
{run_id}
/
artifacts
/
{artifact_id}
/
preview
Preview Run Artifact
curl --request GET \
  --url https://sdk.nimbleway.com/v1/jobs/runs/{run_id}/artifacts/{artifact_id}/preview \
  --header 'Authorization: Bearer <token>'
{
  "columns": [
    "<string>"
  ],
  "row_count": 123,
  "rows": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

run_id
string
required
artifact_id
string
required

Cookies

token
string | null

Response

Successful Response

A tabular preview of an artifact's contents.

columns
string[]
required

Column names in the preview.

row_count
integer
required

Total number of rows in the artifact.

rows
Rows · object[]
required

Sample rows from the artifact.