Retrieve a download order target

Request

Retrieves a download order for the specified order and target ID.

Security
OAuth2
Path
orderIdinteger, (int64)required

The ID of the download order.

entityIdinteger, (int64)required

The ID of the target entity.

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

Responses

Successful operation

Bodyapplication/json
entityobject(Link)

Represents a link to a resource.

selfobject(Link)

Represents a link to a resource.

Response
{ "entity": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false }, "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false } }