Sitecore API catalog/Download orders API//
- Retrieve the download order targets
Retrieve a download order with a specific ID
Retrieve multiple download orders
Create a download order
Retrieve a download order target
Retrieve the download ord...
Retrieves the download order targets for the specified order ID.
Security
OAuth2
- https://your-serverhttps://your-server/api/downloadorders/{orderId}/targets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
curl -i -X GET \
'https://your-server/api/downloadorders/{orderId}/targets?skip=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Successful operation
Response
{ "order": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "items": [ { … } ], "total_items": 0, "returned_items": 0, "offset": 0, "next": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "previous": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "identifier": "string", "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "property1": null, "property2": null }