Get a dining option

Returns a DiningOption object containing information about a type of service offered by a restaurant. For example, dine in, take out, and delivery might be dining options for a restaurant.

Securityoauth2
Request
path Parameters
guid
required
string

The Toast POS GUID of the dining option.

header Parameters
Toast-Restaurant-External-ID
required
string

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

Responses
200

Returns a DiningOption object.

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