--- title: "Get-VBRvCDCloudOrganizationUser" description: "This cmdlet returns the VBRvCDCloudOrganizationUser object that contains the details about Cloud Director user accounts added to your Organization. You can use this object to create new subtenants." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrvcdcloudorganizationuser.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Cloud Connect > Veeam Cloud Connect Subusers > Get-VBRvCDCloudOrganizationUser" dateModified: "2026-08-19" --- # Get-VBRvCDCloudOrganizationUser ## Short Description Returns Cloud Director user accounts. **Platform**: VMware **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRvCDCloudOrganizationUser [-Name ] [-vCDCloudProvider ] [] ``` ## Detailed Description This cmdlet returns the `VBRvCDCloudOrganizationUser` object that contains the details about Cloud Director user accounts added to your Organization. You can use this object to create new subtenants. ::: note Consider the following: - You must add the Cloud Director users to the Cloud Director Organization in VMware Cloud Director beforehand. The user must not have the administrator role. - This cmdlet works for tenants only. - Run the [`Find-VBRvCloudEntity`](find-vbrvcloudentity.md) cmdlet with the `OrganizationUser` parameter to get the array of the Cloud Director users from the Cloud Provider side. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies an array of names for the Cloud Director user account that you want to get.

String[]

False

Named

False

vCDCloudProvider

Specifies the service provider added to Veeam Backup & Replication.

Accepts the VBRCloudProvider[] object. To get this object, run the Get-VBRCloudProvider cmdlet.

VBRCloudProvider[]

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Example 1. Getting All Cloud Director User Accounts in Cloud Director Organization This example shows how to get all Cloud Director user accounts added to your Cloud Director Organization. ``` Get-VBRvCDCloudOrganizationUser ``` ::: ::: example ### Example 2. Getting Cloud Director User Account by Name This example shows how to get a Cloud Director user by name. ``` Get-VBRvCDCloudOrganizationUser -Name "vCDUser1" ``` ::: ::: example ### Example 3. Getting Cloud Director User Account by Cloud Director Service Provider This example shows how to get a Cloud Director user by Cloud Director service provider. ``` $provider = Get-VBRCloudProvider -Name "vCDProvider" Get-VBRvCDCloudOrganizationUser -vCDCloudProvider $provider -Name "vCDuser" ``` Perform the following steps: 1. Run the [`Get-VBRCloudProvider`](get-vbrcloudprovider.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$provider` variable. 2. Run the `Get-VBRvCDCloudOrganizationUser` cmdlet. Set the `$provider` variable as the `vCDCloudProvider` parameter value. Specify the `Name` parameter value. ::: ## Related Commands [`Get-VBRCloudProvider`](get-vbrcloudprovider.md)