Webhook: End user updated

A webhook sent when an end user is updated

Payload

The payload of this webhook request is an object.
typestringOptional

The webhook event type description

timestampstringOptional

The timestamp for when the event was generated. Uses millisecond precision to help with event ordering needs.

dataobjectOptional

The webhook event data

tagslist of stringsOptional

A list of tags that Ada provides. You can use tags to filter webhook events in the Ada dashboard. Includes the end_user_id value for the webhook payload by default. Ada may add additional tags at any time.

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "type": "v1.end_user.updated",
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}
Built with