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
- 200
- 400
- 401
Paginated list of customers
Bad request — invalid parameters
Unauthorized — missing or invalid API key
Response
{
"data": [
{
"id": "4021",
"name": "Sunrise Craft Beverages",
"code": "SUNRISE",
"companyName": null,
"email": null,
"phone": null
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}