POST api/v1/TableSave

Request Information

URI Parameters

None.

Body Parameters

TableSavelInput
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TableSavelInput'.

Response Information

Resource Description

KOTSaveModel
NameDescriptionTypeAdditional 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>