POST api/productions/delete
Request Information
URI Parameters
None.
Body Parameters
ProductionData| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationBranchOfficeID | integer |
None. |
|
| Date | date |
None. |
|
| Shift | string |
None. |
|
| Status | string |
None. |
|
| OrderNumber | string |
None. |
|
| Notes | string |
None. |
|
| ShiftAsEnum | ProductionShiftEnum |
None. |
|
| StatusAsEnum | ProductionStatusEnum |
None. |
|
| ID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplicationBranchOfficeID": 1,
"Date": "2026-02-04T03:01:52.3407994+00:00",
"Shift": "MORNING",
"Status": "OPEN",
"OrderNumber": "sample string 3",
"Notes": "sample string 4",
"ShiftAsEnum": 0,
"StatusAsEnum": 0,
"ID": 1
}
text/xml
Sample:
<ProductionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.Production"> <ID xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">1</ID> <ApplicationBranchOfficeID>1</ApplicationBranchOfficeID> <Date>2026-02-04T03:01:52.3407994+00:00</Date> <Notes>sample string 4</Notes> <OrderNumber>sample string 3</OrderNumber> <Shift>MORNING</Shift> <ShiftAsEnum>MORNING</ShiftAsEnum> <Status>OPEN</Status> <StatusAsEnum>OPEN</StatusAsEnum> </ProductionData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.