List archived conversations
Retrieve all archived conversations for the authenticated user.
Overview:
Archived conversations are hidden from the main list but preserved for reference. This endpoint returns only conversations where isArchived: true and archivedBy is set. Results include conversations the caller owns and those shared with them.
Filtering and sorting:
Results can be narrowed using search, shared, startDate, endDate, and conversationId. Sorting is controlled by sortBy and sortOrder. Pagination is controlled by page and limit.
Unarchiving:
Use PATCH /conversations/{conversationId}/unarchive to restore a conversation to the active list.
Query parameters
Page number (1-indexed)
Items per page
Field to sort by
Sort direction
Case-insensitive substring match against title and message content (max 1000 chars)
Filter by shared status
Include conversations created on or after this timestamp
Include conversations created on or before this timestamp
Restrict results to a single conversation by identifier
Response
List of archived conversations
Example response
{
"conversations": [
{
"title": "Q4 Financial Report Discussion"
}
]
}