## Get Status **get** `/assets/download/{jobId}` Retrieve the status and the url of a batch download assets request ### Path Parameters - `jobId: string` ### Returns - `jobId: string` The job id associated with the download request - `jobStatus: string` The current job status - `downloadUrl: optional string` The download url ### Example ```http curl https://api.cloud.scenario.com/v1/assets/download/$JOB_ID \ -u "$SCENARIO_SDK_API_KEY:SCENARIO_SDK_API_SECRET" ``` #### Response ```json { "jobId": "jobId", "jobStatus": "jobStatus", "downloadUrl": "downloadUrl" } ```