Purpose
Allows integrators to notify restaurant staff at a specific table — either to request a waiter or to initiate a payment with a chosen payment method.HTTP Request
Module Requirement
Request Body
integer
required
The ID of the table for which the call is being triggered. Must correspond to an existing table in the venue.
string
required
The type of call to trigger. Accepted values:
WAITER— notify staff that a waiter is needed at the tablePAY— request payment for the table
integer
The payment method ID to use when
type is PAY. Must be the default CASH or CARD payment method configured for the venue.payment_method is required when type is PAY and must not be sent for type WAITER.Request Example
Response
200 OK — Call triggered successfully
400 Bad Request — Validation or creation failure
Returned when the request body is invalid (e.g. unknowntable_id, unsupported type, missing payment_method for a PAY call, or invalid payment method ID).