API
Skip to main content

Create customer

It is recommended to use the parameter customerId to avoid duplicate records.

Creating a customer with the following details:

  • Customer ID: 1
  • First name: José
  • Last name: Silva
  • Email: jose.silva@email.com
  • Phone number: 351#961234567
POST /customers
{
"customerId": "1",
"firstName": "José",
"lastName": "Silva",
"email": "jose.silva@email.com",
"phoneNumber": "351#123456789"
}

When the customer is successfully created, a unique identifier (UUID) is generated that identifies the customer to the API.