content library item download session: list

Lists the identifiers of the download sessions created by the calling user. Optionally may filter by library item.

Request:

HTTP request

GET https://{server}/rest/com/vmware/content/library/item/download-session

?library_item_id=obj-103

Request Query Parameters:

Name Type Description
bold = required
library_item_id string Optional. Library item identifier on which to filter results.

Response:

HTTP Status Code: 200

Representations:

{
    "value"[
        "obj-103",
        "obj-103"
    ]
}
<?xml version="1.0" ?>
<ns0:List-Result xmlns:ns0="http://vmware.com/content/library/item/download_session" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <value-array>
    <array-item>obj-103</array-item>
    <array-item>obj-103</array-item>
  </value-array>
</ns0:List-Result>

Response Type:

Name Type Description
bold = required
value string[] The array of identifiers of all download sessions created by the calling user.

Errors:

HTTP Status Code Type Description
404 not_found if a library item identifier is given for an item which does not exist.