GET v1/Parcels/{parcelId}/CarrierParameters

Get all Parcel's Carrier Parameters.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
parcelId

The id of the Parcel.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

A collection of Carrier Parameters.


Collection of StorablePropValue
NameDescriptionTypeAdditional 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>