GET api/TableLayout?companycode={companycode}&branchId={branchId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companycode

string

Required

branchId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TableLayout
NameDescriptionTypeAdditional information
TableLayoutId

integer

None.

TableNo

string

None.

X

integer

None.

Y

integer

None.

Width

integer

None.

Height

integer

None.

SectionId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TableLayoutId": 1,
    "TableNo": "sample string 2",
    "X": 3,
    "Y": 4,
    "Width": 5,
    "Height": 6,
    "SectionId": 7
  },
  {
    "TableLayoutId": 1,
    "TableNo": "sample string 2",
    "X": 3,
    "Y": 4,
    "Width": 5,
    "Height": 6,
    "SectionId": 7
  }
]

text/xml

Sample:
<ArrayOfTableLayout xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models">
  <TableLayout>
    <Height>6</Height>
    <SectionId>7</SectionId>
    <TableLayoutId>1</TableLayoutId>
    <TableNo>sample string 2</TableNo>
    <Width>5</Width>
    <X>3</X>
    <Y>4</Y>
  </TableLayout>
  <TableLayout>
    <Height>6</Height>
    <SectionId>7</SectionId>
    <TableLayoutId>1</TableLayoutId>
    <TableNo>sample string 2</TableNo>
    <Width>5</Width>
    <X>3</X>
    <Y>4</Y>
  </TableLayout>
</ArrayOfTableLayout>