Delete Table

This endpoint is for deleting a table. Please note table delete will not be allowed if the table has open sales.

Request
Security:
path Parameters
tableId
required
string

Id of the table in Tyro Connect that should be deleted

Example: 2688fcf2-44dd-4c72-88ac-79d0910f2983
header Parameters
Authorization
required
string
Default: Bearer {$$.env.access_token}
Responses
200

The table was successfully deleted

403

When you don't have the right permissions to delete a table for the provided location.

404

When the provided tableId does not match a table stored in the system.

delete/tables/{tableId}
Request samples
curl -i -X DELETE \
  'https://api.tyro.com/connect/tables/{tableId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "error": "No table found for 2688fcf2-44dd-4c72-88ac-79d0910f2983"
}
Copyright © Tyro Payments 2019-2024. All right reserved.