Customers
List all customers
Retrieves a paginated list of all customers associated with the partner.
Results are returned in descending order by creation date (newest first).
get/v1/partner/customers
Query parameters
pageobject
Page number (1-indexed)
pageSizeobject
Number of items per page
customerCodeobject
Filter customers by exact customer code match
Response
Customers retrieved successfully
Example response
{
"data": [
{
"id": "019a0ad5-75d5-78d7-ad93-0ebb55da0eb6",
"legalName": "Acme Corporation Pte Ltd",
"displayName": "Acme Corp",
"currency": "SGD",
"status": "ACTIVE"
},
{
"id": "019a0ad5-75d6-7ca5-9995-d0ab28d119d2",
"legalName": "Beta Industries Ltd",
"displayName": "Beta Industries",
"currency": "GBP",
"status": "CREATED"
}
],
"pagination": {
"page": 1,
"pageSize": 20,
"totalCount": 150,
"totalPages": 8
}
}