AgenticUniverse - Previously Formi
  1. Pre-Interaction Context
AgenticUniverse - Previously Formi
  • Our Technical Note
    • Why Open AI is not Enough
    • How business Outcomes would Change Radically with AgenticUniverse
    • Our Research
      • STT - Nuances and Insights
      • Solving for STT Constraints
  • Generate Token
    • Login/Generate Token
      POST
  • Agent Configuration
    • Model Configuration
      • Configuration Helpers
        • Supported Providers
        • Supported Models
        • Supported Parameters
      • Get Model Configuration
      • Set Model Configuration
    • State Machine
      • Edge
        • Legacy
          • Create Edge
          • Edge Details
          • Update Edge
          • Delete Edge
        • Update edge properties
        • Get edge details
        • Delete an edge
        • Create an edge (transition) between two states
      • State
        • Create State from Template
        • Get State Information
        • Update State
        • Delete State
      • Get State Machine Structure
    • Prompt Templates
      • Get All Templates
      • Render Template
    • Tools
      • Get Tools List
      • Add Tool
      • Update Tool
      • Delete Tool
    • Get All Agents
      GET
    • Single Agent Details
      GET
    • Create Agent
      POST
    • Update Agent Details
      PUT
    • Enable Dashboard For An Outlet
      POST
    • Disable Dashboard For An Outlet
      POST
    • Get Call queue Sheet ID
      GET
  • Interactions
    • Pre-Interaction Context
      • Schedule an Interaction
        POST
      • Update an Interaction Id
        PUT
      • Delete an Interaction Id
        DELETE
      • Clear all interactions
        POST
      • Get Summarized Interaction Info
        GET
    • Interaction Modalities
      • Video
        • Generation
          • Generate Welcome Video
      • Text
        • Start Interaction
        • Create Response
        • End Interaction
      • Voice
        • Connection Configuration
          • Quickstart
          • Connecting Twilio
          • Connecting Exotel
          • Formi WebSocket Configuration Guide
          • Create a New Connection Vendor
          • Get All Connection Vendors
          • Update a Connection Vendor
          • Delete a Connection Vendor
          • Get Agent's Connection Config
          • Add or Update Agent's Connection Config
    • Post Interaction Configuration
      • Email Destination Configuration
      • Variables CRUD
        • Get all required variables for the outlet with map
        • Modify variable definition for outlet
        • Add a new variable for the outlet
        • DELETE variable for outlet
        • Connect Variable to a destination
      • Destinations CRUD
        • Get all destinations for the outlet
        • Modify Destination for outlet
        • Add a new Destination for the outlet
        • DELETE Destinations for outlet
    • Get Interaction Summary
      GET
    • Resolve an Escalated Interaction
      POST
    • Get the Interaction list
      GET
    • Get Information regarding Single Interaction
      GET
  • Agent Utilisation
    • Get Credits Available
    • Interaction Utilisation
    • Model Utilisation
  • Webhooks
    • Get webhook URL
    • Update webhook URL
    • Get webhook metadata
    • Modify webhook metadata
    • Get reservation ingestion metadata
  • Untitled Endpoint
    POST
  1. Pre-Interaction Context

Get Summarized Interaction Info

Staging Env
https://staging-api.formi.co.in
Staging Env
https://staging-api.formi.co.in
GET
https://staging-api.formi.co.in
/v2/interactions/{interaction_id}/info
Last modified:2025-07-12 11:48:07
Maintainer:Not configured
Fetches a specific, summarized set of key data points for an interaction. This is the preferred endpoint for most UI-driven use cases.

Request

Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging-api.formi.co.in/v2/interactions//info'

Responses

🟢200OK
application/json
Successful Response - Summarized interaction details fetched successfully.
Body

Example
{
    "success": true,
    "message": "Interaction info fetched successfully",
    "payload": {
        "id": 12345,
        "contact_id": 987,
        "call_recording_url": "https://recordings.s3.amazonaws.com/outlet-50/rec-12345.mp3",
        "direction": "user_initiated",
        "interaction_start_time": "2023-10-27 10:00:05",
        "interaction_end_time": "2023-10-27 10:05:20",
        "interaction_scheduled_time": "",
        "average_latency": 450.75,
        "status": "completed",
        "modality": "voice",
        "interaction_summary": {
            "resolution_required": false,
            "final_status": "Appointment Booked"
        },
        "transcript": [
            {
                "role": "user",
                "content": "Hi, I'd like to book an appointment."
            },
            {
                "role": "assistant",
                "content": "Of course, I can help with that. When are you looking to book?"
            }
        ],
        "post_interaction_entities": {
            "appointment_date": "2023-11-05",
            "appointment_time": "14:30"
        },
        "pre_interaction_variables": {
            "source_campaign": "fall_promo_2023",
            "user_segment": "returning_customer"
        },
        "customer_details": {
            "customer_id": 987,
            "customer_phone_number": "+15551234567",
            "customer_name": "Jane Doe"
        }
    }
}
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-12 11:48:07
Previous
Clear all interactions
Next
Generate Welcome Video
Built with