get
https://yourwebhook.com/floors/locationId
Purpose
This is a GET webhook set by the POS intended to return information on floors configured in the POS
| Attribute | Meaning | Type |
|---|---|---|
floors | List of floor objects returned in the response. | array<object> |
floors[].id | Unique identifier for the floor. | string |
floors[].name | Display name of the floor. | string |
floors[].description | Short description of the floor. | string |
floors[].capacity | Maximum number of people the floor can accommodate. | integer |
{
"floors":[
{
"id":"B1",
"name":"Bar",
"description":"Bar floor",
"capacity":60
},
{
"id":"R1",
"name":"Restaurant",
"description":"Restaurant floor",
"capacity":75
}
]
}