List customers
Customers
List Customers
Retrieve a paginated list of all customers registered under your company.
GET
List customers
Overview
GET /customers returns a paginated list of customers registered under your company. Use it to render a back-office customer list, search, or to reconcile your local cache against Cartevo.
When to use it
- Render a “all customers” view in your dashboard.
- Find a customer by name/email when their ID is not at hand.
- Reconcile your local customer database against Cartevo’s source of truth.
Prerequisites
- Authenticated as a company user.
Request
Headers
| Name | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Query parameters
| Name | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | 1-indexed page number. |
limit | integer | 10 | Items per page. Max recommended: 100. |
sync | boolean | false | If true, force a re-sync from the upstream provider before returning. Slower; use sparingly. |
Response
200 — Success
GET /customers/{id}.
Error responses
| Status | Trigger |
|---|---|
401 | Missing or expired Bearer token. |
Code examples
cURL
Node.js (axios)
Related
POST /customers— register a new customer.GET /customers/{id}— full customer detail.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.