Get customer details
GET/customers/:customerId
Returns the full record for a single customer, including payment terms, internal notes, all contact persons (with primary contact flagged), and all addresses (billing, shipping, or both). Use this to sync customer master data into your CRM or accounting system.
Request
Response
- 200
- 401
- 404
Full customer details
Unauthorized — missing or invalid API key
Resource not found
Response
{
"id": "4021",
"name": "Sunrise Craft Beverages",
"code": "SUNRISE",
"companyName": null,
"email": null,
"phone": null,
"paymentTerms": "Net 30",
"notes": null,
"contacts": [
{
"name": null,
"email": null,
"phone": null,
"isPrimary": null
}
],
"addresses": [
{
"addressType": null,
"street": null,
"city": null,
"state": null,
"zipCode": null,
"country": null,
"isPrimary": null
}
]
}