GET v1/Parcels/{parcelId}/CarrierParameters
Get all Parcel's Carrier Parameters.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parcelId |
The id of the Parcel. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
A collection of Carrier Parameters.
Collection of StorablePropValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Key": "sample string 1",
"Value": "sample string 2"
},
{
"Key": "sample string 1",
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStorablePropValue xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StorablePropValue>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</StorablePropValue>
<StorablePropValue>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</StorablePropValue>
</ArrayOfStorablePropValue>