Skip to main content

viva engage search

Returns a list of messages, users, topics and groups that match the specified query.

Usage

m365 viva engage search [options]

Options

--queryText <queryText>

The query for the search

--show [show]

Specifies the type of data to return when using --output text. Allowed values summary, messages, users, topics, groups.

--limit [limit]

Limits the results returned for each item category.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

warning

In order to use this command, you need to grant the Microsoft Entra application used by the CLI for Microsoft 365 the permission to the Viva Engage API. To do this, execute the cli consent --service VivaEngage command.

Using the --show option in JSON output is not supported. To filter JSON results, use either a JMESPath query or filter the data yourself after retrieving them.

Examples

Returns search result for the query community

m365 viva engage search --queryText "community"

Returns groups that match community

m365 viva engage search --queryText "community" --show "groups"

Returns topics that match community

m365 viva engage search --queryText "community" --show "topics"

Returns the first 50 users who match the search query nuborocks.onmicrosoft.com

m365 viva engage search --queryText "nuborocks.onmicrosoft.com" --show "users" --limit 50

Returns all search results for the query community. Stops at 1000 results.

m365 viva engage search --queryText "community" --output json

Returns the search results for the query community and limits the results to the first 50 entries for each result category.

m365 viva engage search --queryText "community" --output json --limit 50

Response

{
"summary": {
"messages": 1,
"topics": 0,
"users": 0,
"groups": 0
},
"messages": [
{
"id": 2000337648877569,
"sender_id": 36425097217,
"delegate_id": null,
"replied_to_id": null,
"created_at": "2022/11/11 21:00:14 +0000",
"network_id": 5897756673,
"message_type": "update",
"sender_type": "user",
"url": "https://www.yammer.com/api/v1/messages/2000337648877569",
"web_url": "https://www.yammer.com/contoso.onmicrosoft.com/messages/2000337648877569",
"group_id": 31158067201,
"body": {
"parsed": "Hello everyone!",
"plain": "Hello everyone!",
"rich": "Hello everyone!"
},
"thread_id": 2000337648877569,
"client_type": "O365 Api Auth",
"client_url": "https://api.yammer.com",
"system_message": false,
"direct_message": false,
"chat_client_sequence": null,
"language": "no",
"notified_user_ids": [],
"privacy": "public",
"attachments": [],
"liked_by": {
"count": 1,
"names": [
{
"full_name": "johndoe",
"permalink": "JohnDoe",
"user_id": 36425097217,
"network_id": 5897756673
}
]
},
"supplemental_reply": false,
"content_excerpt": "Hello everyone!",
"group_created_id": 31158067201
}
],
"users": [],
"topics": [],
"groups": []
}
CTRL + M