POST api/v1/TableSave
Request Information
URI Parameters
None.
Body Parameters
TableSavelInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CompID | integer |
None. |
|
| LocID | integer |
None. |
|
| TableStart | integer |
None. |
|
| TableEnd | integer |
None. |
|
| Mode | string |
None. |
|
| UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompID": 1,
"LocID": 2,
"TableStart": 3,
"TableEnd": 4,
"Mode": "sample string 5",
"UserID": 6
}
application/xml, text/xml
Sample:
<TableSavelInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CompID>1</CompID> <LocID>2</LocID> <Mode>sample string 5</Mode> <TableEnd>4</TableEnd> <TableStart>3</TableStart> <UserID>6</UserID> </TableSavelInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
KOTSaveModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Errcode | integer |
None. |
|
| msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Errcode": 1,
"msg": "sample string 2"
}
application/xml, text/xml
Sample:
<KOTSaveModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Errcode>1</Errcode> <msg>sample string 2</msg> </KOTSaveModel>