Get JCAdmin - TheJumpCloud/support GitHub Wiki
external help file: JumpCloud-help.xml Module Name: JumpCloud online version: https://github.com/TheJumpCloud/support/wiki/ schema: 2.0.0
Gets JumpCloud administrators in your organization
Get-JCAdmin [[-email] <String>] [[-enableMultifactor] <Boolean>] [[-totpEnrolled] <Boolean>]
[[-roleName] <String>] [[-organization] <String>] [<CommonParameters>]
Allows you to search for JumpCloud administrators in your organization. If you have a MSP/MTP tenant, you can query all administrators across all organizations
PS C:\> Get-JCAdmin
Returns all administrators
PS C:\> Get-JCAdmin -email "[email protected]"
Returns a specific administrator using their email address
PS C:\> Get-JCAdmin -email "john*"
Returns all administrators that contains john in their email address
PS C:\> Get-JCAdmin -enableMultifactor $true
Returns all administrators that have multifactor enabled
PS C:\> Get-JCAdmin -totpEnrolled $true
Returns all administrators that have totp enabled/enrolled
PS C:\> Get-JCAdmin -roleName "Administrator With Billing"
Returns all administrators that have the Administrator With Billing role
PS C:\> Get-JCAdmin -email "john*" -enableMultiFactor $true -roleName "Administrator With Billing"
Returns all administrators that contains john in their email address, have mutlifactor enabled and have the Administrator With Billing role
PS C:\> Get-JCAdmin -organization "organizationID"
Returns all administrators that are within a specific organization (this can only be utilized by MTP/MSP tenants)
The email of the JumpCloud admin you wish to search for.
Type: System.String
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
A search filter to search for admins with multifactor enabled/disabled.
Type: System.Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
A search filter to search for admins based on their organization (Only for MTP/MSP tenants)
Type: System.String
Parameter Sets: (All)
Aliases: organizationID
Required: False
Position: 4
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
A search filter to search for admins based on their role
Type: System.String
Parameter Sets: (All)
Aliases:
Accepted values: Administrator With Billing, Administrator, Manager, Command Runner With Billing, Command Runner, Help Desk, Billing Only, Read Only
Required: False
Position: 3
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
A search filter to search for admins with totp enabled/disabled.
Type: System.Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.