Skip to main content
GET
/
fnb
/
get-table
/
{tableNumber}
Get table details
curl --request GET \
  --url https://api.series.hr/fnb/get-table/{tableNumber} \
  --header 'apikey: <api-key>'
Get a specific table by its table number, including all active orders currently assigned to that table.

Request

curl -X GET "https://api.series.hr/fnb/get-table/T1" \
  -H "apikey: YOUR_API_KEY"

Path Parameters

tableNumber
string
required
The table number to look up.

Response

200
{
  "success": true,
  "data": {
    "WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
    "WorkspaceName": "Café Series",
    "Table": {
      "Id": "tbl-1",
      "TableNumber": "T1",
      "Name": "Window Seat",
      "Capacity": 4,
      "Status": "available",
      "EffectiveStatus": "occupied",
      "ActiveOrders": [
        {
          "Id": "1717027200000",
          "Customer": {
            "UserId": 714760171,
            "Username": "builderman",
            "DisplayName": "Builderman",
            "AvatarUrl": "https://tr.rbxcdn.com/..."
          },
          "OrderType": "dine-in",
          "TableNumber": "T1",
          "OrderNumber": "12",
          "Items": [
            {
              "MenuItemId": "item-1",
              "Name": "Espresso",
              "Quantity": 2,
              "Price": 25,
              "Notes": ""
            }
          ],
          "Status": "preparing",
          "ClaimStatus": "claimed",
          "ClaimedBy": {
            "UserId": 1,
            "Username": "Roblox",
            "DisplayName": "Roblox",
            "AvatarUrl": "https://tr.rbxcdn.com/...",
            "ClaimedAt": "2026-04-05T12:00:00.000Z"
          },
          "Total": 50,
          "CreatedAt": "2026-04-05T11:30:00.000Z",
          "CreatedBy": "714760171"
        }
      ]
    }
  }
}

Status Codes

  • 200: Table returned successfully
  • 401: API key is required or invalid
  • 403: F&B module is disabled or workspace access is denied
  • 404: Table not found

Authorizations

apikey
string
header
required

Pass your API key in the apikey header. Alternatively, the x-api-key header is also accepted.

Path Parameters

tableNumber
string
required

The table number to look up

Response

Table details