Get a service charge type

Returns a ServiceCharge object containing information about a type of fee applied to restaurant sales. For example, an automatic gratuity applied to the check for a large dining party might be a type of service charge for a restaurant.

Securityoauth2
Request
path Parameters
guid
required
string

The Toast POS GUID of the service charge.

header Parameters
Toast-Restaurant-External-ID
required
string

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

Responses
200

Returns a ServiceCharge object.

get/serviceCharges/{guid}
Request samples
curl -i -X GET \
  'https://toast-api-server/config/v2/serviceCharges/{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",
  • "amountType": "FIXED",
  • "amount": 0,
  • "percent": 0,
  • "criteria": {
    },
  • "gratuity": true,
  • "taxable": true,
  • "applicableTaxes": [
    ],
  • "serviceChargeCalculation": "PRE_DISCOUNT",
  • "destination": "RESTAURANT"
}