List customers
/v1/customers Scope: customers:readSearch and filter your customer base.
Query parameters
limitintegerOptionalPage size.
starting_afterstringOptionalCursor.
ending_beforestringOptionalCursor (backwards).
emailstringOptionalExact email match.
phonestringOptionalExact phone match.
is_blockedbooleanOptionaltrue returns only blocked customers.
searchstringOptionalCase-insensitive search over name, email and phone.
Request
curl 'https://api.tablezio.com/v1/customers?search=lucia' -H 'X-API-Key: tbz_…'Response
{ "object": "list", "data": [ /* customer */ ], "has_more": false, "next_cursor": null, "previous_cursor": null, "url": "/v1/customers" }