diff --git a/content/v2.0/organizations/members/add-member.md b/content/v2.0/organizations/members/add-member.md index 1ab088e5d..87d369ed7 100644 --- a/content/v2.0/organizations/members/add-member.md +++ b/content/v2.0/organizations/members/add-member.md @@ -7,13 +7,15 @@ menu: name: Add a member parent: Manage members weight: 201 -draft: true --- -Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI) -to add a member to an organization. +Use the `influx` command line interface (CLI) to add a member to an organization. -## Add a member to an organization in the InfluxDB UI +{{% cloud-msg %}} +Adding members is currently unavailable in {{< cloud-name >}}. +{{% /cloud-msg %}} + + ## Add a member to an organization using the influx CLI -Use the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add) -to add a user to an organization. Adding a user requires the following: +1. Get a list of users and their IDs by running the following: -_Complete content coming soon_ +```sh +influx user find +``` + +2. Add the desired user to an organization with this command: + +```sh +influx org members add -n -o +``` + +For more information, see the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add).