Atlas Actions

Connect external APIs and services to your AI agent

Atlas Actions allows you to connect external APIs to your AI agent, enabling real-time data fetching during conversations.

Use Cases

  • Retrieve customer order status
  • Query product inventory
  • Access user account details
  • Check support ticket status

Configuration

  • Name: Unique identifier for the tool
  • Description: When and how the agent should use it
  • URL: HTTP endpoint for the request
  • Timeout: Max wait time (default: 30000ms)
  • Synchronous Mode: Agent waits for response before continuing
  • Parameters: Input values extracted from conversation (Name, Type, Description, Required)
  • Headers: Custom HTTP headers (Content-Type, Authorization, etc.)
  • OAuth: Client Credentials authentication support

Webhook Payload

1{
2 "callId": "string",
3 "campaignId": "string",
4 "customerPhoneNumber": "string",
5 "customerName": "string",
6 "parameters": {
7 "yourParam1": "extracted_value"
8 }
9}

Return status 200 with Content-Type: application/json.