For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Login
HomeDocsAPI ReferenceMCP ServerChat SDKsRelease Notes
HomeDocsAPI ReferenceMCP ServerChat SDKsRelease Notes
  • Introduction
    • Overview
    • Authentication
    • Versioning
    • Limits
    • Pagination
    • Errors
    • Migrate to V2
    • Changelog
  • Knowledge
    • Overview
    • Sources
    • Articles
    • Tags
  • End Users
    • Overview
    • Getting started
    • Developer guide
      • POSTWebhook: End user created
      • POSTWebhook: End user updated
  • Integrations
    • Overview
    • Getting started
  • Conversations
    • Overview
    • Getting started
  • Webhooks
    • Overview
  • Data Compliance
    • Overview
  • Data Export
    • Overview
    • Getting started
    • Conversations
    • Messages
Login
LogoLogo
End UsersWebhooks

Webhook: End user updated

Payload
1{
2 "type": "v1.end_user.updated",
3 "timestamp": "2020-09-20T00:00:00+00:00",
4 "data": {
5 "created_at": "2020-09-20T00:00:00+00:00",
6 "end_user_id": "5f7e0e2c1e7c7e000f0f9c3a",
7 "profile": {
8 "first_name": "Ada",
9 "last_name": "Lovelace",
10 "display_name": "Ada Lovelace",
11 "avatar": "https://example.com/avatars/ada.png",
12 "email": "ada.lovelace@ada.cx",
13 "language": "en-US",
14 "metadata": {
15 "example_key1": "example_string_value",
16 "example_key2": true,
17 "example_key3": 123
18 },
19 "system_properties": {
20 "sunshine_user_id": "5f7e0e2c1e7c7e000f0f9c3a"
21 }
22 },
23 "updated_at": "2020-09-20T00:00:00+00:00"
24 },
25 "tags": [
26 "5f7e0e2c1e7c7e000f0f9c3a"
27 ]
28}
A webhook sent when an end user is updated
Was this page helpful?
Previous

Integrations API

Overview
Next
Built with

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.