POST api/v1/CargoGradeSave

Request Information

URI Parameters

None.

Body Parameters

CargoGradeSaveInput
NameDescriptionTypeAdditional information
Mode

string

None.

ID

integer

None.

CargoID

integer

None.

CargoGroupID

integer

None.

CargoSubGroupID

integer

None.

CargoGrade

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Mode": "sample string 1",
  "ID": 2,
  "CargoID": 3,
  "CargoGroupID": 4,
  "CargoSubGroupID": 5,
  "CargoGrade": "sample string 6"
}

application/xml, text/xml

Sample:
<CargoGradeSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CargoGrade>sample string 6</CargoGrade>
  <CargoGroupID>4</CargoGroupID>
  <CargoID>3</CargoID>
  <CargoSubGroupID>5</CargoSubGroupID>
  <ID>2</ID>
  <Mode>sample string 1</Mode>
</CargoGradeSaveInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CargoGradeSaveInput'.

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.