End User API [Deprecated]
Get or Create End User
POST

/api/create_end_user/

Explo-Authorization*
curl --request POST \
  --url https://api.explo.co/api/create_end_user/ \
  --header 'Explo-Authorization: <explo-authorization>' \
  --data '{
  "provided_id": "<provided_id>",
  "email": "<email>",
  "customer_id": 0
}'

The End User API is now deprecated and has been replaced by the Customer API.

This endpoint gets or creates an end user. If the provided_id does not exist for the provided customer_id, a new end user will be created and information about the user will be sent back. If the provided_id does exist for the customer_id, the existing user will be returned.

Body

provided_idrequired
string

The ID you use to identify this end user in your database

emailrequired
string

The email adress of your end user

customer_idrequired
number

The ID of the end user group the new user should belong to

attributes
object

A json mapping of key values you can use to load user-specific data into your dashboards. Any key value is valid, but header and footer are reserved keys that you can use to load html to display in the header and footer of your email

Response

success
number

Indicates whether the call was successful. 1 if successful, 0 if not.

end_user
object

The data of the end user

curl --location --request POST 'https://api.explo.co/api/create_end_user/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
    "provided_id": "example_1",
    "email": "example@explo.co",
    "customer_id": 123
}'
{
  "success": 1,
  "end_user": {
    "provided_id": 3,
    "email": "example@explo.co",
    "attributes": "{'name': 'Example', 'header': '<div/>'"
  }
}