POST api/WorldwideCourier/ShipmentDimension

Request Information

URI Parameters

None.

Body Parameters

Shipment_BoxDimension
NameDescriptionTypeAdditional information
AwbNo

string

None.

dimension

string

None.

pcs

integer

None.

wtkg

decimal number

None.

L

decimal number

None.

W

decimal number

None.

H

decimal number

None.

Total_Wt

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "AwbNo": "sample string 1",
  "dimension": "sample string 2",
  "pcs": 3,
  "wtkg": 4.1,
  "L": 5.1,
  "W": 6.1,
  "H": 7.1,
  "Total_Wt": 8.1
}

application/octet-stream

Sample:
{"AwbNo":"sample string 1","dimension":"sample string 2","pcs":3,"wtkg":4.1,"L":5.1,"W":6.1,"H":7.1,"Total_Wt":8.1}

application/xml, text/xml

Sample:
<Shipment_BoxDimension xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BudgetApiServices.Models">
  <AwbNo>sample string 1</AwbNo>
  <H>7.1</H>
  <L>5.1</L>
  <Total_Wt>8.1</Total_Wt>
  <W>6.1</W>
  <dimension>sample string 2</dimension>
  <pcs>3</pcs>
  <wtkg>4.1</wtkg>
</Shipment_BoxDimension>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.