GET/v1/merchant/customers

List customers

Returns CRM customers saved for your merchant account.

Authentication

Secret Key — send Authorization: Bearer YOUR_KEY header.

Query parameters

ParameterTypeRequiredDescription
searchstringNoSearch name, email, or phone
cursorstringNoPagination cursor
limitintegerNoPage size (default 25)

Response fields

FieldTypeDescription
itemsarrayCustomer objects
next_cursorstring | nullCursor for next page

Code examples

bash
# Examples for "customers-list" not configured.

Response example

json
{ "success": true, "data": { "items": [], "next_cursor": null } }