Skip to main content

List customers

GET 

/customers

Returns a paginated list of your customer accounts. Each entry includes the customer name, code, company name, email, and phone. Filter by name or customer code. Retrieve a specific customer for full contact, address, and payment term details.

Request

Response

Paginated list of customers

Response
{
"data": [
{
"id": "4021",
"name": "Sunrise Craft Beverages",
"code": "SUNRISE",
"companyName": null,
"email": null,
"phone": null
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}