Skip to main content
POST
/
v1
/
ui
/
customers
Create a new customer
curl --request POST \
  --url https://api.example.com/v1/ui/customers \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "metadata": {},
  "name": "<string>",
  "telephone": "<string>",
  "externalRef": "<string>"
}
'

Body

application/json
email
string<email>
required
metadata
object
required
name
string
telephone
string
externalRef
string

Response

201

Customer created successfully