Fetch Customers
GET
Endpoint path: /v0/customers
Query parameters
email (string, optional) Filter customers by email
Header parameters
Authorization (string, required) Token for authentication
Responses
200 — Successful retrieval of customers data Content-Type: application/json
Response object (example)
{
"items": [
{
"customer_id": "123e4567-e89b-12d3-a456-426614174000",
"email": "[email protected]",
"company_name": "text",
"first_name": "text",
"last_name": "text",
"type": "individual"
}
]
}Last updated