GET
/v1/merchant/customersList customers
Returns CRM customers saved for your merchant account.
Authentication
Secret Key — send Authorization: Bearer YOUR_KEY header.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
search | string | No | Search name, email, or phone |
cursor | string | No | Pagination cursor |
limit | integer | No | Page size (default 25) |
Response fields
| Field | Type | Description |
|---|---|---|
items | array | Customer objects |
next_cursor | string | null | Cursor for next page |
Code examples
bash
# Examples for "customers-list" not configured.Response example
json
{ "success": true, "data": { "items": [], "next_cursor": null } }