Vai al contenuto principale

Developers / API Reference

API Reference

OpenAPI 3.0 spec. openapi.yaml • Postman collection

Endpoints

  • List customers

  • Create a customer

GET/api/v1/customers

List customers

Lists the customers that belong to the tenant. Supports the `search` and `limit` query parameters.

Scope: customers.read

Response

{
  "customers": [
    {
      "id": "cus_...",
      "name": "Emma Carter",
      "phone": "+4915112345678",
      "email": "emma@example.com",
      "isVip": false,
      "createdAt": "2026-04-01T12:00:00Z"
    }
  ]
}

curl

curl https://api.glanevo.com/api/v1/customers \
  -H "Authorization: Bearer glv_..."