POST api/resto/table_list

Request Information

URI Parameters

None.

Body Parameters

TableInsertRequest
NameDescriptionTypeAdditional information
Org_ID

integer

None.

Table_ID

integer

None.

Flor

integer

None.

TableName

string

None.

SeatingCapacity

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Org_ID": 1,
  "Table_ID": 2,
  "Flor": 3,
  "TableName": "sample string 4",
  "SeatingCapacity": 5
}

application/xml, text/xml

Sample:
<resto.TableInsertRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Resto_Soft">
  <Flor>3</Flor>
  <Org_ID>1</Org_ID>
  <SeatingCapacity>5</SeatingCapacity>
  <TableName>sample string 4</TableName>
  <Table_ID>2</Table_ID>
</resto.TableInsertRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.