List user's conversations
GET
/api/intake/conversations
const url = 'https://example.com/api/intake/conversations';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/intake/conversations \ --header 'Authorization: Bearer <token>'Returns recent conversations for the authenticated user, most recent first.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
ConversationListResponse
object
conversations
required
Conversations
Array<object>
ConversationSummaryobject
conversation_id
required
Conversation Id
string
status
required
Status
string
stage_slug
required
Stage Slug
string
file_count
File Count
integer
progress_step
Progress Step
string
archived
Archived
boolean
max_active
required
Max Active
integer
Example
{ "conversations": [ { "file_count": 0, "progress_step": "Unknown", "archived": false } ]}Validation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}