Chat History

Purpose

Retrieves the full history of a specific conversation.

HTTP Method

GET

Endpoint

https://platform-api.feedloop.ai/app/init

NameTypeRequiredDescription

Token

String

Unique app authentication token.

Content-Type

String

Set to application/json.

Path Parameter

FieldTypeRequiredDescription

convo_id

String

Conversation ID obtained from the Chat Initialization API.

Response

FieldTypeDescription

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

FieldTypeDescription

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"
    }
}

Last updated