Retrieve the download order targets

Request

Retrieves the download order targets for the specified order ID.

Security
OAuth2
Path
orderIdinteger, (int64)required

The unique identifier of the order.

Query
skipinteger, (int32)

The number of items to skip for pagination.

curl -i -X GET \
  'https://your-server/api/downloadorders/{orderId}/targets?skip=0' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful operation

Bodyapplication/json
orderobject(Link)

Represents a link to a resource.

itemsArray of objects or null(DownloadOrderTargetResource)

Gets or sets the list of items.

total_itemsinteger or null, (int64)

Gets or sets the total number of items.

returned_itemsinteger or null, (int64)

Gets or sets the number of returned items.

offsetinteger or null, (int32)

Gets or sets the offset of the items.

nextobject(Link)

Represents a link to a resource.

previousobject(Link)

Represents a link to a resource.

identifierstring or null

Gets or sets the identifier of the resource.

selfobject(Link)

Represents a link to a resource.

property name*anyadditional property
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 }