Skip to main content

Userapp

Properties

NameTypeDescriptionNotes
IdStringThe user app id[optional]
CreatedSystem.DateTimeTime when the user app was created[optional]
ModifiedSystem.DateTimeTime when the user app was last modified[optional]
HasMultipleAccountsBooleanTrue if the owner has multiple accounts for the source[optional] [default to $false]
UseForPasswordManagementBooleanTrue if the source has password feature[optional] [default to $false]
ProvisionRequestEnabledBooleanTrue if the app allows access request[optional] [default to $false]
AppCenterEnabledBooleanTrue if the app is visible in the request center[optional] [default to $true]
SourceAppUserappSourceApp[optional]
SourceUserappSource[optional]
AccountUserappAccount[optional]
OwnerUserappOwner[optional]

Examples

  • Prepare the resource
$Userapp = Initialize-Userapp  -Id 2c91808874ff91550175097daaec161c `
-Created 2020-10-08T18:33:52.029Z `
-Modified 2020-10-08T18:33:52.029Z `
-HasMultipleAccounts false `
-UseForPasswordManagement true `
-ProvisionRequestEnabled true `
-AppCenterEnabled true `
-SourceApp null `
-Source null `
-Account null `
-Owner null
  • Convert the resource to JSON
$Userapp | ConvertTo-JSON

[Back to top]