Skip to content
Esc
navigateopen⌘Jpreview
Book a demo

Create or update customer

POST/v1/customer
Request body
requiredapplication/json
apiKeystring
customerobject
Show properties
phoneNumberstring
firstNamestring
lastNamestring
emailstring
propertiesobject
Show properties
valuesobject
addToListsstring[]
removeFromListsstring[]
Responses
200Successful response
statusstring
Request
curl -X POST "https://api.sendhelios.com/v1/customer" \
  -H "Content-Type: application/json" \
  -d '{
  "apiKey": "string",
  "customer": {
    "phoneNumber": "string",
    "firstName": "string",
    "lastName": "string",
    "email": "string"
  },
  "properties": {
    "values": {}
  },
  "addToLists": [
    "string"
  ],
  "removeFromLists": [
    "string"
  ]
}'
Response
{
  "status": "string"
}