Retrieves a download order with a specific ID along with download details, such as the target count, whether the order has conversions, who created the order and when, as well as the download status.
Security
OAuth2
- https://your-serverhttps://your-server/api/downloadorders/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
curl -i -X GET \
'https://your-server/api/downloadorders/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'If-Modified-Since: 2019-08-24T14:15:22Z'Successful operation
Response
{ "order_id": 0, "name": "string", "target_count": 0, "has_conversions": true, "created_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "created_on": "2019-08-24T14:15:22Z", "modified_by": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "status": "string", "download_location": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "additional_info": "string", "external_job_reference": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "targets": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "culture": "string", "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false } }