Welcome to Ada’s release notes. Scroll down to see a list of recent releases.

You can subscribe to updates with our RSS feed, or sign up to get news about updates directly in your inbox.

At the end of every week that has had at least one feature release, we’ll send you an email on Friday at 11 a.m. Eastern to let you know about our last few releases.

March 26, 2026

Pre-greeting context and sensitive metadata for End Users API

Two new capabilities are available on the End Users API for setting user context and passing sensitive values through Ada’s public APIs.

Create end users before a conversation

A new POST /v2/end-users/ endpoint allows creating an end user with profile data (language, metadata) before starting a conversation. When POST /v2/conversations/ is called with the returned end_user_id, the AI Agent has full user context from the first turn. This eliminates order-of-operations issues where metadata was unavailable at greeting time.

Available for custom channel (Conversations API) integrations only.

Sensitive metadata

A new sensitive_metadata field is available on both POST /v2/end-users/ and PATCH /v2/end-users/:id, nested inside the profile object with a fields sub-object. Values passed through this field are encrypted at rest, redacted from the dashboard, excluded from LLM context, and automatically deleted after 24 hours. The field is write-only and never returned in API responses. Maximum 20 key-value pairs per request.

Use sensitive_metadata for auth tokens, session IDs, or personally identifiable information. This matches the security contract of the Chat SDK’s setSensitiveMetaFields().

  • sensitive_metadata on POST /v2/end-users/: available for custom channels only.
  • sensitive_metadata on PATCH /v2/end-users/:id: available for all channels.

For integration patterns and examples, see the End Users API developer guide.