v1

latestOpenAPI 3.1.02026-07-22155403592.5 KB
Point of Sale
customers
Customers

Get one customer

Returns a specific customer

get/consumers/{consumer_id}/pos/customers/{customer_id}

Path parameters

consumer_idstring uuid required
customer_idstring required

Unique identifier of the customer

Response

Successful Response

idstring required

Unique identifier of the customer

first_namestring nullable

First name of the customer

last_namestring nullable

Last name of the customer

namestring required

Name (first name + last name) of the customer

phonestring nullable

Phone number (mobile, home, work, ...) of the customer

emailstring nullable

Email address of the customer

created_onstring date-time nullable

Date and time when the customer was created

loyaltyinteger nullable

Loyalty points of the customer

birthdatestring date nullable

Birthdate of the customer

Example response

{
  "id": "371ca583-d218-8000-b236-397532cf0e52",
  "first_name": "John",
  "last_name": "Doe",
  "name": "John Doe",
  "phone": "+32475123456",
  "email": "john.doe@gmail.com",
  "created_on": "2025-01-01T00:00:00Z",
  "addresses": [
    {
      "address_type": "home",
      "name": "Home",
      "street": "Main Street",
      "number": "123",
      "box": "A",
      "city": "Paris",
      "postal_code": "75000",
      "country": "FR"
    }
  ],
  "loyalty": 100,
  "birthdate": "1990-01-01"
}