POST api/v1/PackingList
Request Information
URI Parameters
None.
Body Parameters
PackingListInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ID | integer |
None. |
|
| TranType | string |
None. |
|
| PackingDate | date |
None. |
|
| FactoryID | integer |
None. |
|
| OutletID | integer |
None. |
|
| ItemGroupID | integer |
None. |
|
| UserID | integer |
None. |
|
| EndDate | date |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ID": 2,
"TranType": "sample string 3",
"PackingDate": "2025-12-06T09:24:03.9555351+05:30",
"FactoryID": 4,
"OutletID": 5,
"ItemGroupID": 6,
"UserID": 7,
"EndDate": "2025-12-06T09:24:03.9555351+05:30",
"json": "sample string 8"
}
application/xml, text/xml
Sample:
<PackingListInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <EndDate>2025-12-06T09:24:03.9555351+05:30</EndDate> <FactoryID>4</FactoryID> <ID>2</ID> <ItemGroupID>6</ItemGroupID> <Mode>sample string 1</Mode> <OutletID>5</OutletID> <PackingDate>2025-12-06T09:24:03.9555351+05:30</PackingDate> <TranType>sample string 3</TranType> <UserID>7</UserID> <json>sample string 8</json> </PackingListInput>
application/x-www-form-urlencoded
Sample:
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. |