Feedloop AI
  • GETTING STARTED
    • Discover Feedloop AI
    • Authentication
      • Sign Up
      • Login
    • Platform
      • Workspace
      • Project
      • People
      • Usage
  • WHAT IS AGENT
    • What is Agent
      • ⚪Manage Agent
    • Basic Agent
      • ⚪Instruction
        • Who
        • What
      • ⚪Training
        • Rules
        • Example
      • ⚪Skill
        • Knowledge
        • Analys
      • ⚪Style
    • Procedures
    • Advance Reasoning
      • ⚪Creating New Agent
      • ⚪Advance Agent Activation
      • ⚪Deleting Agent
      • ⚪Advance Agent Managing Existing
  • AGENT SETTINGS
    • Instruction
      • Who
      • What
      • Additional Instruction
    • Training
      • Chat Rules
      • Retrieval
      • Answering
    • Context
      • Primitive Context
      • Array
    • Tools
      • Knowledge
      • API - Call
        • Manage API Call
        • Basic Configuration
        • Header
        • Body Field
          • Input Binding
            • Page 2
          • Output Binding
        • Testing API Call
        • Trouble Shooting
        • Example Implementation
          • API Call Covid
      • Data Connector
    • Card
      • Intro & Summary Text
      • Data Visualization Card
      • Analyze Card
    • Procedure Basic Info
      • Activation Condition
      • Goal
      • Action
    • Procedures Interaction
      • Procedures Step
      • Procedures Context
      • Procedures Tools
  • AGENT UTILITY
    • Resource
      • Document PDF
        • Preparing your PDF
      • Data Connector
        • Create new data connector
        • Configure dataset, table, and column
        • Using Data Playground
        • Dataset in Data Playground
        • Training in Data Playground
        • SQL generation and modification
        • SQL Execution
    • Apps
      • Chat Widget
      • Web App
    • Testing
    • Monitoring
      • Customer Chat
      • Context
      • Document
  • TASK
    • ⚪Image Analyzer
      • Building Analyzer
      • ID Identifier
    • ⚪Document Analyzer
      • Contractual Document Analyzer
    • ⚪Database Analyzer
    • ⚪Additional Solution
      • Text Sentiment Analyzer
      • Customer Complaint Analyzer
  • For Developer
    • API Chat
      • Chat Initialization
      • Chat Message
      • Chat History
      • Error Handling
    • Embed Widget
      • Embedding the Widget
      • Identity Attributes
      • Widget Attribute Details
Powered by GitBook
On this page
  • Purpose
  • HTTP Method
  • Endpoint
  • Header
  • Path Parameter
  • Response
  • Response
  1. For Developer
  2. API Chat

Chat History

PreviousChat MessageNextError Handling

Last updated 5 months ago

Purpose

Retrieves the full history of a specific conversation.

HTTP Method

GET

Endpoint

Header

Name
Type
Required
Description

Token

String

Unique app authentication token.

Content-Type

String

Set to application/json.

Path Parameter

Field
Type
Required
Description

convo_id

String

Conversation ID obtained from the Chat Initialization API.

Response

Field
Type
Description

status

Strings

Indicates success or failure.

data

Array

List of messages exchanged in the conversation.

Example

{
    "identity": "john.doe@example.com",
    "data": {
        "name": "John Doe",
        "email": "john.doe@example.com"
    }
}

Response

Field
Type
Description

status

String

Indicates success or failure.

convo_id

String

Unique identifier for the conversation.

user_id

String

Unique identifier for the user.

Example:

jsonCopy code{
    "status": "success",
    "data": {
        "convo_id": "08fc3e54-81d4-49dd-9727-ca727c2df26a",
        "user_id": "09883cac-2d0f-498c-be07-0d8724ab7e6c"
    }
}
https://platform-api.feedloop.ai/widget/convo_id/chats