Toast · Schema

PaymentOptions

Information about the forms of payment that the restaurant will accept for orders.

Food ServicePoint of SaleRestaurantsHospitality

Properties

Name Type Description
delivery object
takeout object
ccTip boolean enables credit card tips
View JSON Schema on GitHub

JSON Schema

restaurants-payment-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/toast/refs/heads/main/json-schema/restaurants-payment-options-schema.json",
  "title": "PaymentOptions",
  "description": "Information about the forms of payment that the restaurant will\naccept for orders.\n",
  "type": "object",
  "properties": {
    "delivery": {
      "$ref": "#/definitions/DeliveryPaymentOptions"
    },
    "takeout": {
      "$ref": "#/definitions/TakeoutPaymentOptions"
    },
    "ccTip": {
      "type": "boolean",
      "description": "enables credit card tips"
    }
  }
}