Chat History
Purpose
Retrieves the full history of a specific conversation.
HTTP Method
GET
Endpoint
https://platform-api.feedloop.ai/widget/convo_id/chats
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": "[email protected]",
"data": {
"name": "John Doe",
"email": "[email protected]"
}
}
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"
}
}
Last updated