POST api/GeneralMaster/GetCargoPackages
Request Information
URI Parameters
None.
Body Parameters
CargoPackage| Name | Description | Type | Additional information |
|---|---|---|---|
| pak_id | integer |
None. |
|
| pak_code | string |
None. |
|
| pak_description | string |
None. |
|
| pak_status | string |
None. |
|
| start | integer |
None. |
|
| length | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"pak_id": 1,
"pak_code": "sample string 1",
"pak_description": "sample string 2",
"pak_status": "sample string 3",
"start": 1,
"length": 1
}
application/xml, text/xml
Sample:
<CargoPackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models"> <length>1</length> <pak_code>sample string 1</pak_code> <pak_description>sample string 2</pak_description> <pak_id>1</pak_id> <pak_status>sample string 3</pak_status> <start>1</start> </CargoPackage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |