Method
listDeploymentConversations GET
Copy GET

Lists all conversations for the given deployment and current user.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
No deploymentId str The deployment to get conversations for.
No externalApplicationId str The external application id associated with the deployment conversation. If specified, only conversations created on that application will be listed.
No conversationType DeploymentConversationType The type of the conversation indicating its origin.
No fetchLastLlmInfo bool If true, the LLM info for the most recent conversation will be fetched. Only applicable for system-created bots.
No limit int The number of conversations to return. Defaults to 600.
No search str The search query to filter conversations by title.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result list[DeploymentConversation]

Exceptions:

TYPE WHEN
DataNotFoundError

deploymentId is not found.

DataNotFoundError

externalApplicationId is not found.

Language: