2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
title: View members
|
|
|
|
seotitle: View members of an organization in InfluxDB
|
2019-01-23 19:48:25 +00:00
|
|
|
description: Review a list of members for an organization.
|
2019-01-23 17:51:58 +00:00
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: View members
|
|
|
|
parent: Manage members
|
2019-02-06 17:48:09 +00:00
|
|
|
weight: 202
|
2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
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-04-09 21:44:09 +00:00
|
|
|
* Click the **Settings** tab in the navigation bar.
|
|
|
|
|
|
|
|
{{< nav-icon "settings" >}}
|
2019-01-23 17:51:58 +00:00
|
|
|
|
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
|
2020-01-15 22:42:49 +00:00
|
|
|
# Syntax
|
2019-01-23 18:36:40 +00:00
|
|
|
influx org members list -n <org-name>
|
|
|
|
|
|
|
|
# Example
|
|
|
|
influx org members list -n my-org
|
|
|
|
```
|