Skip to content
StraventaDocs

List customers for a merchant

Returns a paginated, searchable list of customer records belonging to the given merchant. Env-scoped — sandbox rows never appear in production listings.

GET
/v1/payments/merchants/{id}/customers

Returns a paginated, searchable list of customer records belonging to the given merchant. Env-scoped — sandbox rows never appear in production listings.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Merchant UUID

Formatuuid

Query Parameters

search?string

Free-text search across name, email, and phone

page?integer
Default1
Range1 <= value
limit?integer
Default25
Range1 <= value <= 100

Response Body

application/json

curl -X GET "https://example.com/v1/payments/merchants/497f6eca-6276-4993-bfeb-53cbbbba6f08/customers"
{
  "customers": [],
  "total": 0,
  "page": 1,
  "limit": 25,
  "total_pages": 1
}
Empty
Empty

Was this page helpful?