Webhook: End user created

A webhook sent when a new end user is created

Payload

The payload of this webhook request is an object.
typestringOptional
timestampstringOptional
dataobjectOptional

The webhook event data

tagsanyOptional

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "type": "v1.end_user.created",
3 "timestamp": "2020-09-20T00:00:00+00:00",
4 "data": {
5 "end_user_id": "5f7e0e2c1e7c7e000f0f9c3a",
6 "created_at": "2020-09-20T00:00:00+00:00",
7 "updated_at": "2020-09-20T00:00:00+00:00",
8 "profile": {
9 "first_name": "Ada",
10 "last_name": "Lovelace",
11 "email": "ada.lovelace@ada.cx",
12 "language": "en-US",
13 "metadata": {
14 "example_key1": "example_string_value",
15 "example_key2": true,
16 "example_key3": 123
17 },
18 "system_properties": {
19 "sunshine_user_id": "5f7e0e2c1e7c7e000f0f9c3a"
20 }
21 }
22 },
23 "tags": [
24 "5f7e0e2c1e7c7e000f0f9c3a"
25 ]
26}