Overview

The Edit Intent screen allows you to expose an intent as an API trigger. When enabled, this intent can be invoked externally via an HTTP API call. Triggering this API will start the configured flow in the selected integration channel (for example, Microsoft Teams, Slack, etc.). This is useful when you want external systems (monitoring tools, backend services, etc.) to programmatically initiate a conversation or workflow inside a supported integration. Screenshot2026 02 10at1 55 08AM

Enabling an Intent as an API

To enable an intent as an API:
  1. Open the Edit Intent modal.
  2. Toggle Enable Trigger to ON.
  3. Select an Integration from the Integration Funnel.
  4. Choose a Agent Graph to Trigger for that integration.
  5. Save the intent.
  6. Update the build with new intent version.
Once enabled, the platform generates API URLs for different environments:
  • DEV
  • UAT
  • PROD
These endpoints can be called to trigger the intent.

How It Works

When the generated API endpoint is called:
  1. The request is authenticated using a Bearer Token (API key configured at the workspace level).
  2. The intent is matched and executed.
  3. The selected flow is triggered.
  4. The conversation starts in the chosen integration channel.

Example

If:
  • The Integration Funnel is set to Microsoft Teams
  • The selected flow is linked to a Teams bot/channel
Then:
  • Calling the API will initiate a conversation in the configured Teams channel or bot.

Authentication

All API requests must include a valid Bearer Token in the Authorization header.
Requests without a valid token will be rejected.

API Request Format

Endpoint

Use the environment-specific API URL generated in the Edit Intent screen:
(Exact URL varies by environment: DEV / UAT / PROD)

Request Payload

The API accepts the following JSON payload:

Field Descriptions

Special Case: Twilio Integration

When using Twilio as the integration channel, an additional parameter is required to initiate outbound calls:

Additional Field for Twilio

Session Initialization

  • The message field is treated as the first user message in the conversation.
  • The user_variables are injected at session start.
  • Any variables passed here will be accessible inside the flow logic, conditions, and tools.

Example Payload

This ensures the session starts with all required context already available.

API Usage Examples

All examples below demonstrate how to trigger an intent API using a API KEY and a JSON payload.

Request Details

  • Method: POST
  • Authorization: Bearer Token (workspace-level)
  • Content-Type: application/json

Sample Payload

Replace:
  • API_URL with your DEV / UAT / PROD endpoint
  • YOUR_BEARER_TOKEN with your workspace token

Twilio-Specific Example


Response Examples

Success Response (200 OK)

Twilio Success Response (200 OK)

When triggering a Twilio outbound call, the response includes call-specific details:

Error Responses

Common Use Cases

  • Triggering incident workflows from monitoring systems
  • Starting conversations from backend services
  • Initiating alerts in Teams or other channels
  • Passing structured context into a flow at runtime
  • Twilio: Initiating outbound calls for notifications, reminders, or follow-ups

Notes & Best Practices

  • Ensure the integration channel is properly configured and connected.
  • Always validate the Bearer Token before deploying to PROD.
  • Use user_variables for structured data instead of embedding everything in the message.
  • Keep the intent name short and descriptive for internal reference.
  • Test thoroughly in DEV environment before promoting to UAT/PROD.
  • For Twilio: Always provide phone numbers in E.164 format (e.g., +1234567890) to ensure proper call routing.