Get a menu item sales category

Returns a SalesCategory object containing information about a type of menu item used to analyze purchases at a restaurant. For example, food and alcohol might be sales categories for a restaurant.

Securityoauth2
Request
path Parameters
guid
required
string

The Toast POS GUID of the sales category.

header Parameters
Toast-Restaurant-External-ID
required
string

The Toast POS GUID of the restaurant that the configuration applies to.

Responses
200

Returns a SalesCategory object.

get/salesCategories/{guid}
Request samples
curl -i -X GET \
  'https://toast-api-server/config/v2/salesCategories/{guid}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Toast-Restaurant-External-ID: string'
Response samples
application/json
{
  • "guid": "string",
  • "entityType": "string",
  • "name": "string"
}