2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
title: View members
|
|
|
|
seotitle: View members of an organization in InfluxDB
|
2019-01-23 19:05:57 +00:00
|
|
|
description: Review a lit of members for an organization.
|
2019-01-23 17:51:58 +00:00
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: View members
|
|
|
|
parent: Manage members
|
|
|
|
weight: 2
|
|
|
|
---
|
|
|
|
|
|
|
|
Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI)
|
|
|
|
to view members of an organization.
|
|
|
|
|
|
|
|
## View members of organization in the InfluxDB UI
|
|
|
|
|
2019-01-23 18:23:28 +00:00
|
|
|
* Click the **Organizations** tab in the navigation bar.
|
2019-01-23 17:51:58 +00:00
|
|
|
|
|
|
|
{{< img-hd src="/img/organizations-icon.png" title="Organizations icon" />}}
|
|
|
|
|
2019-01-23 18:23:28 +00:00
|
|
|
* Click on the name of an organization, then select the **Members** tab. The list of organization members appears.
|
2019-01-23 17:51:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
## View members of organization using the influx CLI
|
|
|
|
|
2019-01-23 19:30:19 +00:00
|
|
|
Use the [`influx org members list` command](/v2.0/reference/cli/influx/org/members/list)
|
2019-01-23 18:36:40 +00:00
|
|
|
to list members of an organization. Listing an organization's members requires the following:
|
|
|
|
|
|
|
|
- The name or ID of the organization
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Pattern
|
|
|
|
influx org members list -n <org-name>
|
|
|
|
|
|
|
|
# Example
|
|
|
|
influx org members list -n my-org
|
|
|
|
```
|