POST api/v1/ProductionSave
Request Information
URI Parameters
None.
Body Parameters
ProductionSaveInput| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| ProdNo | string |
None. |
|
| ProdDate | date |
None. |
|
| FactoryID | integer |
None. |
|
| Mode | string |
None. |
|
| json | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 2,
"ProdNo": "sample string 3",
"ProdDate": "2025-12-06T09:24:02.9555303+05:30",
"FactoryID": 5,
"Mode": "sample string 6",
"json": "sample string 7"
}
application/xml, text/xml
Sample:
<ProductionSaveInput 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> <ProdDate>2025-12-06T09:24:02.9555303+05:30</ProdDate> <ProdNo>sample string 3</ProdNo> <UserID>2</UserID> <json>sample string 7</json> </ProductionSaveInput>
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. |