post
https://rls.congacloud.com/api/clm/v1/conversation-threads/search
Searches conversation threads by keyword across subjects, message content, participant names, and optionally document names.
Required Parameters:
searchText: Keyword to search forobjectType: Object type (e.g., "Agreement")objectId: Specific object ID to search threads for
Search Scope:
- Thread subject/name (exact and partial matches)
- Message content across all messages in threads
- Participant names (both internal Users and external Contacts)
- Document names (when
searchInAttachmentsis true)
Example Request (Search across Agreement and amendments):
{
"searchText": "contract review",
"objectType": "Agreement",
"objectId": "CON-12345",
"searchInAttachments": true,
"sortBy": "ModifiedDate",
"sortDirection": "Descending",
"limit": 10,
"skip": 0
}