POST api/Amazon/ShipPrimeOrder

Request Information

URI Parameters

None.

Body Parameters

AmazonLabelRequestData
NameDescriptionTypeAdditional information
AmazonLabelRequest

AmazonLabelRequest

None.

Request Formats

application/json, text/json

Sample:
{
  "AmazonLabelRequest": {
    "orderNumber": "sample string 1",
    "serviceCode": "sample string 2",
    "shipDate": "sample string 3",
    "weight": {
      "value": 1.1,
      "units": "sample string 2",
      "WeightUnits": 3
    },
    "dimensions": {
      "units": "sample string 1",
      "length": 2.1,
      "width": 3.1,
      "height": 4.1
    }
  }
}

application/xml, text/xml

Sample:
<AmazonLabelRequestData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AmazonLabelRequest>
    <orderNumber>sample string 1</orderNumber>
    <serviceCode>sample string 2</serviceCode>
    <shipDate>sample string 3</shipDate>
    <weight>
      <value>1.1</value>
      <units>sample string 2</units>
      <WeightUnits>3</WeightUnits>
    </weight>
    <dimensions>
      <units>sample string 1</units>
      <length>2.1</length>
      <width>3.1</width>
      <height>4.1</height>
    </dimensions>
  </AmazonLabelRequest>
</AmazonLabelRequestData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.