Allows to search messages based on multiple search parameters.
Search messages
get
Search messages according to the specified criteria. The "query" parameter takes a search query defined as "field:value" pairs combined by the operator "AND" (e.g. "text:foo AND autor:bar"). Supported fields are (case-insensitive): "text", "author", "hashtag", "cashtag", "mention", "signal", "fromDate", "toDate", "streamId", "streamType". "text" search requires a "streamId" to be specified. "streamType" accepts one of the following values: "chat" (IMs and MIMs), "im", "mim", "chatroom", "post". "signal" queries can only be combined with "fromDate", "toDate", "skip" and "limit" parameters.
Query parameters
querystringRequired
The search query. See above for the query syntax.
skipintegerOptional
No. of results to skip.
limitintegerOptional
Max no. of results to return. If no value is provided, 50 is the default.
scopestringOptional
Describes where content should be searched for that query.
It can exclusively apply to Symphony content or to one Connector.
sortDirstringOptional
Messages sort direction : ASC or DESC (default to DESC)
tierstringOptional
Target search tier : hot, warm or all (default to hot)
Header parameters
sessionTokenstringRequired
Session authentication token.
keyManagerTokenstringOptional
Key Manager authentication token.
Responses
200
OK
application/json
204
No Messages.
400
Client error, see response body for further details.
application/json
401
Unauthorized: Session tokens invalid.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
get
/v1/message/search
📘 Optional attributes returned
Note that some attributes are returned in the payload only under specific conditions:
sharedMessage only when the message represented by this class is a wall post sharing another message;
initialMessageId, initialTimestamp, and replacing only when the corresponding message is sent as an update to another message thanks to Update Message endpoint. Note that the first two attributes relate to the original (and therefore first) message sent, whereas the replacing attribute relates to the message that has been updated by this message;
replacedBy only when this message has been updated by a new message. It contains the id of the replacing message.
parentMessageId only when this message is a reply or a forward of another message which id is returned in this attribute.
🚧 Important
You should use the POST Message Search endpoint where the query string is specified in the request body if your Agent is in-cloud. With this GET endpoint, query strings will be transmitted in the clear.
Allow to search messages across the message space the authenticated user has access to. This means all rooms this user is a member of and all public rooms.
Query arguments
The query parameter supports the following combination of arguments. When multiple arguments are supported, the search results are the union of all query arguments, defined as argument:value pairs combined by the operator "AND". Only a certain combination of arguments is supported.
Argument
Usage
Comment
hashtag
Searches for a specific hashtag across messages to or in a specific streamType
Can be used in conjunction with cashtag or mention.
Can be used in conjunction to author or text only for a specific streamType
cashtag
Searches for a specific cashtag across all messages or in a specific streamType
Can be used in conjunction with hashtag or mention.
Can be used in conjunction to author or text only for a specific streamType
mention
Searches for a specific user mention, by user id, across all messages or in a specific streamType
Can be used in conjunction with hashtag or cashtag.
Can be used in conjunction to author or text only for a specific streamType
author
Searches for a specific message author, by user id, across all messages or for a specific streamType
(1.52 and later) You can now search for an author in conjunction with a specific streamType
text
Searches for plain text field in a specific message, not including any hashtag, cashtag or user mention.
Requires a streamId to be provided.
Searching for text across all messages or a specific streamType is not supported.
Multi-word search is allowed.
Syntax: "text":"Hello World"
streamType
Searches for messages in a specific stream type, either:
• CHAT (1-1 instant messages and multi-party instant messages),
• IM (1-1 instant message),
• MIM (multi-party instant message),
• ROOM, or
• POST (user profile wall posts).
Can be used in conjunction with author, hashtag, cashtag or mention
streamId
Searches for messages in a specific stream. See Conversation ID for streamId format.
Can be used in conjunction with hashtag, cashtag, mention, text or author
signal
Search for messages matching this signal.
Can only be combined with date filtering and paging parameters.
Usage
At least one argument in the list above is required.
To provide multiple arguments, the query is formatted as argument:value, and separated with the operator AND. Returned messages will include messages that match all the arguments.
Arguments names and values are case-insensitive.
The same argument cannot be used multiple times.
Search terms cannot contain the following reserved characters: colon :, parentheses ( ) and whitespaces (except when applying multi-word text search. See the text argument in the table above).
Date selector
The queryparameter can optionally support the following date selectors:
fromDate: selects messages sent after fromDate. Supported for all query parameters above.
toDate: selects messages sent before toDate. Supported for all query parameters above.
The date selector parameter is inclusive: a message sent at exactly the same time as the query fromDate will be included in the results
Examples
query=hashtag:newWorld
query=hashtag:newWorld AND mention:7627861917906
query=hashtag:newWorld AND author:7627861917906 AND streamId:YQ_Q3ml8vMp98so2WRK_W3___qTUhq1_dA
query=author:7627861917906
📘 Note
Spaces are expected between query arguments joined with AND.