List Conversations
Method & Path
Authentication
Requires bearer token authentication via theAuthorization header.
Query Parameters
Maximum number of conversations to return per page
Number of conversations to skip for pagination
Response
Indicates whether an error occurred
Array of conversation objects
Total number of conversations available
Limit used for this request
Offset used for this request
Whether more conversations are available beyond the current page
Success Response Example
Error Response Example
Error Codes
- 401 Unauthorized: Missing or invalid authentication token
- 500 Internal Server Error: Database or server error occurred
Rename Conversation
Method & Path
Authentication
Requires bearer token authentication. Users can only rename their own conversations.Path Parameters
Unique identifier of the conversation to rename
Request Body
New title for the conversation
Response
Indicates whether an error occurred
Success or error message
The updated conversation title
Success Response Example
Error Codes
- 401 Unauthorized: Missing or invalid authentication token
- 404 Not Found: Conversation does not exist or user does not have access
- 422 Unprocessable Entity: Invalid request body format
Archive Conversation
Method & Path
Authentication
Requires bearer token authentication. Users can only archive their own conversations.Path Parameters
Unique identifier of the conversation to archive
Response
Indicates whether an error occurred
Success or error message
Success Response Example
Error Response Example
Error Codes
- 401 Unauthorized: Missing or invalid authentication token
- 404 Not Found: Conversation does not exist or user does not have access
- 500 Internal Server Error: Database or server error occurred
Archived conversations are soft-deleted and can potentially be restored. They will not appear in the conversation list endpoint.