Your Toast POS loyalty integration interface implementation must return the following HTTPS responses to the requests that it receives from the Toast platform.
200 means OK and has predefined success status in the response
-
ACCEPT
- The loyalty service provider processed the transaction successfully.
400 has predefined errors in the response status
-
ERROR_INVALID_TOAST_TRANSACTION_TYPE
- The requestedToast-Transaction-Type
is not valid. -
ERROR_ACCOUNT_INVALID
- The loyalty account is not recognized or is not valid at the current restaurant. -
ERROR_INVALID_INPUT_PROPERTIES
- The specified JSON properties in the request body are not valid. -
ERROR_TRANSACTION_DOES_NOT_EXIST
- The transaction that is being requested to be reversed does not exist. Only occurs on aLOYALTY_REVERSE
transaction. -
ERROR_INVALID_TOKEN
- The token supplied in theAuthorization
header field is invalid or cannot be validated. -
ERROR_TRANSACTION_CANNOT_BE_REVERSED
- The specified transaction cannot be reversed. OnlyLOYALTY_REDEEM
andLOYALTY_ACCRUE
transactions can be reversed. -
ERROR_INVALID_RESTAURANT
- The restaurant specified by theToast-Restaurant-External-ID
is invalid. -
ERROR
- The request cannot be processed for a reason that is not described by any of the other error states. You can include amessage
value in theLoyaltyTransactionResponse
object to display a custom error message string to the restaurant employee. For more information, see Custom error messages.
500 unexpected error
Your integration can return a custom error message that the Toast
platform will display to restaurant employees. To include a custom error
message, you add a message
value to the
LoyaltyTransactionResponse
object that you return to the
Toast platform.
Note |
The error message you submit does not appear on the Toast POS. Submitting a custom message allows your team and the Toast to understand error trends in logs, but servers and guests will not see this message. |
The following example shows a
LoyaltyTransactionResponse
object that delivers a custom
error message to the restaurant employee who is processing a loyalty
program transaction.
LoyaltyTransactionResponse object that includes a custom error message
{ "transactionStatus": "ERROR", "message": "This is my helpful message about the error condition." }