Conversations
Get Conversation Info
Open Source
Partners
- AgentOps-AI
- CrewAIInc
Conversations
Prompts
Search
Agents
Providers
Tools
Usage
Potpie API
Secret Manager
Health
Conversations
Get Conversation Info
GET
/
api
/
v1
/
conversations
/
{conversation_id}
/
info
{
"id": "<string>",
"title": "<string>",
"status": "active",
"project_ids": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"total_messages": 123,
"agent_ids": [
"<string>"
],
"access_type": "read",
"is_creator": true,
"creator_id": "<string>",
"visibility": "private"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
{
"id": "<string>",
"title": "<string>",
"status": "active",
"project_ids": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"total_messages": 123,
"agent_ids": [
"<string>"
],
"access_type": "read",
"is_creator": true,
"creator_id": "<string>",
"visibility": "private"
}