POST api/v1/PackagingSave
Request Information
URI Parameters
None.
Body Parameters
PackagingSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| PackagingNo | string |
None. |
|
| PackagingDate | date |
None. |
|
| FactoryID | integer |
None. |
|
| Mode | string |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 2,
"PackagingNo": "sample string 3",
"PackagingDate": "2025-12-06T09:26:00.252451+05:30",
"FactoryID": 5,
"Mode": "sample string 6",
"json": "sample string 7"
}
application/xml, text/xml
Sample:
<PackagingSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <FactoryID>5</FactoryID> <ID>1</ID> <Mode>sample string 6</Mode> <PackagingDate>2025-12-06T09:26:00.252451+05:30</PackagingDate> <PackagingNo>sample string 3</PackagingNo> <UserID>2</UserID> <json>sample string 7</json> </PackagingSaveInput>
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. |