Create customer
Create a new customer, authorise with basic auth.
POST
/v1/customers
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
emailAddress?string | null
password?string | null
customerGuid?string | null
title?string | null
name?string | null
lastName?string | null
phone?string | null
subscribe?boolean
Response Body
curl -X POST "https://loading/v1/customers" \ -H "Content-Type: application/json" \ -d '{}'
{
"success": true,
"errors": [
{
"description": "string"
}
],
"customerId": 0,
"customerGuid": "string"
}
{
"message": "string",
"code": 0
}
{
"success": true,
"errors": [
{
"description": "string"
}
],
"customerId": 0,
"customerGuid": "string"
}
How is this guide?