Skip to main content

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

Full customer details

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
}
]
}