Request
assets.download.request(strasset_id, DownloadRequestParams**kwargs) -> DownloadRequestResponse
POST/assets/{assetId}/download
Request a link to download the given assetId in the given targetFormat
Request
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.request(
asset_id="assetId",
)
print(response.url){
"url": "url"
}Returns Examples
{
"url": "url"
}