POST api/SansGlobal/ShipmentDimension

Request Information

URI Parameters

None.

Body Parameters

ShipmentDimension
NameDescriptionTypeAdditional information
Category

string

None.

ShipL

decimal number

None.

ShipW

decimal number

None.

ShipH

decimal number

None.

Unit

string

None.

NoOfBox

integer

None.

ActullWeight

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Category": "sample string 1",
  "ShipL": 2.1,
  "ShipW": 3.1,
  "ShipH": 4.1,
  "Unit": "sample string 5",
  "NoOfBox": 6,
  "ActullWeight": 7
}

application/octet-stream

Sample:
{"Category":"sample string 1","ShipL":2.1,"ShipW":3.1,"ShipH":4.1,"Unit":"sample string 5","NoOfBox":6,"ActullWeight":7}

application/xml, text/xml

Sample:
<ShipmentDimension xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BudgetApiServices.Models">
  <ActullWeight>7</ActullWeight>
  <Category>sample string 1</Category>
  <NoOfBox>6</NoOfBox>
  <ShipH>4.1</ShipH>
  <ShipL>2.1</ShipL>
  <ShipW>3.1</ShipW>
  <Unit>sample string 5</Unit>
</ShipmentDimension>

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.