POST api/resources/multipart/listparts/{identifier}
Returns basic information about which parts of a multipart resource upload has been uploaded.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier |
Guid identifying the resource to delete. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A structure containing a collection of part to length mappings.
MultipartResourcePartListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Parts |
Collection of key value pairs representing the part number (Key) and length (Value) of the parts for the resource that have been uploaded. |
Collection of Pair of integer [key] and integer [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"Parts": [
{
"Key": 1,
"Value": 2
},
{
"Key": 1,
"Value": 2
}
]
}
application/xml, text/xml
Sample:
<MultipartResourcePartListResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Parts>
<KeyValuePairOfInt32Int64 />
<KeyValuePairOfInt32Int64 />
</Parts>
</MultipartResourcePartListResult>