POST api/v1/PackingSave
Request Information
URI Parameters
None.
Body Parameters
PackingSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Mode | string |
None. |
|
| ID | integer |
None. |
|
| PackingNo | string |
None. |
|
| PackingDate | string |
None. |
|
| FactoryID | integer |
None. |
|
| OutletID | integer |
None. |
|
| PackingType | string |
None. |
|
| UserID | integer |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mode": "sample string 1",
"ID": 2,
"PackingNo": "sample string 3",
"PackingDate": "sample string 4",
"FactoryID": 5,
"OutletID": 6,
"PackingType": "sample string 7",
"UserID": 8,
"json": "sample string 9"
}
application/xml, text/xml
Sample:
<PackingSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <FactoryID>5</FactoryID> <ID>2</ID> <Mode>sample string 1</Mode> <OutletID>6</OutletID> <PackingDate>sample string 4</PackingDate> <PackingNo>sample string 3</PackingNo> <PackingType>sample string 7</PackingType> <UserID>8</UserID> <json>sample string 9</json> </PackingSaveInput>
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. |