POST api/InsertDailyStichingReceive
Request Information
URI Parameters
None.
Body Parameters
Collection of InsertDailyStichingEntryVM| Name | Description | Type | Additional information |
|---|---|---|---|
| LineId | integer |
None. |
|
| OrderId | integer |
None. |
|
| StyleId | integer |
None. |
|
| CheckerId | integer |
None. |
|
| OutputQty | decimal number |
None. |
|
| AlterQty | decimal number |
None. |
|
| EntryUserId | integer |
None. |
|
| UserIP | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"LineId": 1,
"OrderId": 2,
"StyleId": 3,
"CheckerId": 4,
"OutputQty": 5.1,
"AlterQty": 6.1,
"EntryUserId": 7,
"UserIP": "sample string 8"
},
{
"LineId": 1,
"OrderId": 2,
"StyleId": 3,
"CheckerId": 4,
"OutputQty": 5.1,
"AlterQty": 6.1,
"EntryUserId": 7,
"UserIP": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfInsertDailyStichingEntryVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JCAppAPI.Models">
<InsertDailyStichingEntryVM>
<AlterQty>6.1</AlterQty>
<CheckerId>4</CheckerId>
<EntryUserId>7</EntryUserId>
<LineId>1</LineId>
<OrderId>2</OrderId>
<OutputQty>5.1</OutputQty>
<StyleId>3</StyleId>
<UserIP>sample string 8</UserIP>
</InsertDailyStichingEntryVM>
<InsertDailyStichingEntryVM>
<AlterQty>6.1</AlterQty>
<CheckerId>4</CheckerId>
<EntryUserId>7</EntryUserId>
<LineId>1</LineId>
<OrderId>2</OrderId>
<OutputQty>5.1</OutputQty>
<StyleId>3</StyleId>
<UserIP>sample string 8</UserIP>
</InsertDailyStichingEntryVM>
</ArrayOfInsertDailyStichingEntryVM>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status_Code | string |
None. |
|
| Status | string |
None. |
|
| Message | string |
None. |
|
| Error_Field | string |
None. |
|
| Api_Type | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status_Code": "sample string 1",
"Status": "sample string 2",
"Message": "sample string 3",
"Error_Field": "sample string 4",
"Api_Type": "sample string 5"
}
application/xml, text/xml
Sample:
<JsonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JCAppAPI.Models"> <Api_Type>sample string 5</Api_Type> <Error_Field>sample string 4</Error_Field> <Message>sample string 3</Message> <Status>sample string 2</Status> <Status_Code>sample string 1</Status_Code> </JsonResponse>