Authorizations
Bearer token via Authorization header
Response
Successful Response
The URL of the media
import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const mediaResponse = await client.tasks.uiStates.retrieve(0, {
task_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
});
console.log(mediaResponse.url);{
"url": "<string>"
}import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const mediaResponse = await client.tasks.uiStates.retrieve(0, {
task_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
});
console.log(mediaResponse.url);{
"url": "<string>"
}Bearer token via Authorization header
Successful Response
The URL of the media
Was this page helpful?