Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds command viva engage community user list #6371

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 123 additions & 0 deletions docs/docs/cmd/viva/engage/engage-community-user-list.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
import Global from '/docs/cmd/_global.mdx';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# viva engage community user list

Lists all users within a specified Microsoft 365 Viva Engage community

## Usage

```sh
m365 viva engage community user list [options]
```

## Options

```md definition-list
`--communityId [communityId]`
: The ID of the Viva Engage community. Specify `communityId`, `communityDisplayName` or `entraGroupId`.

`-n, --communityDisplayName [communityDisplayName]`
: The display name of the Viva Engage community. Specify `communityId`, `communityDisplayName` or `entraGroupId`.

`--entraGroupId [entraGroupId]`
: The ID of the Microsoft 365 group. Specify `communityId`, `communityDisplayName` or `entraGroupId`.

`-r, --role [role]`
: Filter the results to only users with the given role: `Admin`, `Member`.
```

<Global />

## Examples

List all users from a community specified by ID.

```sh
m365 viva engage community user list --communityId eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIzNjAyMDAxMTAwOSJ9
```

List all admins from a community specified by display name.

```sh
m365 viva engage community user list --communityDisplayName "All company" --role Admin
```

List all members from a community specified by group ID.

```sh
m365 viva engage community user list --entraGroupId b6c35b51-ebca-445c-885a-63a67d24cb53 --role Member
```

## Response

### Standard response

<Tabs>
<TabItem value="JSON">

```json
[
{
"id": "da634de7-d23c-4419-ab83-fcd395b4ebd0",
"businessPhones": [
"123-555-1215"
],
"displayName": "Anton Johansen",
"givenName": "Anton",
"jobTitle": "IT Manager",
"mail": null,
"mobilePhone": "123-555-6645",
"officeLocation": "123455",
"preferredLanguage": null,
"surname": "Johansen",
"userPrincipalName": "[email protected]",
"roles": [
"Admin"
]
}
]
```

</TabItem>
<TabItem value="Text">

```text
id displayName userPrincipalName roles
------------------------------------ ---------------- ----------------------------------------- ------
da634de7-d23c-4419-ab83-fcd395b4ebd0 Anton Johansen [email protected] Admin
```

</TabItem>
<TabItem value="CSV">

```csv
id,displayName,givenName,jobTitle,mail,mobilePhone,officeLocation,preferredLanguage,surname,userPrincipalName
da634de7-d23c-4419-ab83-fcd395b4ebd0,Anton Johansen,Anton,IT Manager,,123-555-6645,123455,,Johansen,[email protected]
```

</TabItem>
<TabItem value="Markdown">

```md
# viva engage community user list --entraGroupId "b6c35b51-ebca-445c-885a-63a67d24cb53"

Date: 19/9/2024

## Anton Johansen (da634de7-d23c-4419-ab83-fcd395b4ebd0)

Property | Value
---------|-------
id | da634de7-d23c-4419-ab83-fcd395b4ebd0
displayName | Anton Johansen
givenName | Anton
jobTitle | IT Manager
mobilePhone | 123-555-6645
officeLocation | 123455
surname | Johansen
userPrincipalName | [email protected]
```

</TabItem>
</Tabs>
5 changes: 5 additions & 0 deletions docs/src/config/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4474,6 +4474,11 @@ const sidebars: SidebarsConfig = {
label: 'engage community list',
id: 'cmd/viva/engage/engage-community-list'
},
{
type: 'doc',
label: 'engage community user list',
id: 'cmd/viva/engage/engage-community-user-list'
},
{
type: 'doc',
label: 'engage group list',
Expand Down
1 change: 1 addition & 0 deletions src/m365/viva/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default {
ENGAGE_COMMUNITY_ADD: `${prefix} engage community add`,
ENGAGE_COMMUNITY_GET: `${prefix} engage community get`,
ENGAGE_COMMUNITY_LIST: `${prefix} engage community list`,
ENGAGE_COMMUNITY_USER_LIST: `${prefix} engage community user list`,
ENGAGE_GROUP_LIST: `${prefix} engage group list`,
ENGAGE_GROUP_USER_ADD: `${prefix} engage group user add`,
ENGAGE_GROUP_USER_REMOVE: `${prefix} engage group user remove`,
Expand Down
7 changes: 4 additions & 3 deletions src/m365/viva/commands/engage/Community.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export interface Community {
id: string;
displayName: string;
id?: string;
displayName?: string;
description?: string;
privacy: string;
privacy?: string;
groupId?: string;
}
Loading