Skip to content
Get started

Get Status

GET/assets/download/{jobId}

Retrieve the status and the url of a batch download assets request

Path ParametersExpand Collapse
jobId: string
ReturnsExpand Collapse
jobId: string

The job id associated with the download request

jobStatus: string

The current job status

downloadUrl: optional string

The download url

Get Status

curl https://api.cloud.scenario.com/v1/assets/download/$JOB_ID \
    -u "$SCENARIO_SDK_API_KEY:SCENARIO_SDK_API_SECRET"
{
  "jobId": "jobId",
  "jobStatus": "jobStatus",
  "downloadUrl": "downloadUrl"
}
Returns Examples
{
  "jobId": "jobId",
  "jobStatus": "jobStatus",
  "downloadUrl": "downloadUrl"
}