POST
/
api
/
service
/
customer
/
create
curl --request POST \
  --url https://api.sand.getivy.de/api/service/customer/create \
  --header 'Content-Type: application/json' \
  --header 'X-Ivy-Api-Key: <api-key>' \
  --data '{
  "email": "<string>"
}'
{
  "id": "<string>",
  "email": "<string>"
}

Authorizations

X-Ivy-Api-Key
string
header
required

Body

application/json
email
string
required

Response

200 - application/json

Returns the id and email of the created customer

id
string
required
email
string
required