Skip to main content
GET
/
fnb
/
menu-categories
List menu categories
curl --request GET \
  --url https://api.series.hr/fnb/menu-categories \
  --header 'apikey: <api-key>'
List every menu category configured for the workspace F&B module.

Request

curl -X GET "https://api.series.hr/fnb/menu-categories" \
  -H "apikey: YOUR_API_KEY"

Response

200
{
  "success": true,
  "data": {
    "WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
    "WorkspaceName": "Café Series",
    "Description": "Beachside café menu",
    "MenuCategories": [
      {
        "Id": "cat-1",
        "Name": "Hot Drinks",
        "Description": "Coffee, tea, and more"
      },
      {
        "Id": "cat-2",
        "Name": "Cold Drinks",
        "Description": "Smoothies, juices, and sodas"
      }
    ],
    "TotalCategories": 2
  }
}

Status Codes

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

Authorizations

apikey
string
header
required

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

Response

Menu categories list