GET Tables

Endpoint to receive tables from the POS.

curl --location --request GET 'https://integrator.com/getTables/<locationId>'
{
  "tables": [
    {
      "id": "BS1",
      "name": "Bar seat #1",
      "floorId": "B1",
      "seats": 1
    },
    {
      "id": "BS2",
      "name": "Bar seat #2",
      "floorId": "B1",
      "seats": 1
    },
    {
      "id": "BS3",
      "name": "Bar seat #3",
      "floorId": "B1",
      "seats": 1
    },
    {
      "id": "T1",
      "name": "Table #1",
      "floorId": "R1",
      "seats": 6
    },
    {
      "id": "T2",
      "name": "Table #2",
      "floorId": "R1",
      "seats": 8
    },
    {
      "id": "DLVY",
      "name": "delivery"
    }
  ]
}