Customer
Summary
The Customer object represents a Customer user at the system.
Customer data is required for creation partner order.
You don't have to care about creation user, our system make it itself. You have only pass phone number, first name and last name of customer to the method.
In fact, we need first and last names only for unregistered customers. But as we cannot have guarantee of customer existing in our system, we ask you provide it for every order.
Schema
Description
- phone_number: string
The customer's phone number. It needs to be in the international format ("+357XXXXXXXX" for Cyprus)
- first_name: string
The first name of the customer.
- last_name: string
The last name of the customer.
Example
{
"phone_number": "customer-phone-number",
"first_name": "customer-first-name",
"last_name": "customer-last-name"
}
Last modified: 09 February 2024