## Get Status `assets.download.get_status(strjob_id) -> DownloadGetStatusResponse` **get** `/assets/download/{jobId}` Retrieve the status and the url of a batch download assets request ### Parameters - `job_id: str` ### Returns - `class DownloadGetStatusResponse: …` - `job_id: str` The job id associated with the download request - `job_status: str` The current job status - `download_url: Optional[str]` The download url ### Example ```python import os from scenario_sdk import Scenario client = Scenario( api_key=os.environ.get("SCENARIO_SDK_API_KEY"), # This is the default and can be omitted api_secret=os.environ.get("SCENARIO_SDK_API_SECRET"), # This is the default and can be omitted ) response = client.assets.download.get_status( "jobId", ) print(response.job_id) ``` #### Response ```json { "jobId": "jobId", "jobStatus": "jobStatus", "downloadUrl": "downloadUrl" } ```