Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccountRequest.md
2025-05-07 14:37:48 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
account-request AccountRequest AccountRequest AccountRequest powershellsdk
powershell
PowerShell
sdk
AccountRequest
AccountRequest
/tools/sdk/powershell/v3/models/account-request
SDK
Software Development Kit
AccountRequest
AccountRequest

AccountRequest

Properties

Name Type Description Notes
AccountId String Unique ID of the account [optional]
AttributeRequests []AttributeRequest [optional]
Op String The operation that was performed [optional]
ProvisioningTarget AccountSource [optional]
Result AccountRequestResult [optional]
Source AccountSource [optional]

Examples

  • Prepare the resource
$AccountRequest = Initialize-AccountRequest  -AccountId John.Doe `
 -AttributeRequests null `
 -Op Modify `
 -ProvisioningTarget null `
 -Result null `
 -Source null
  • Convert the resource to JSON
$AccountRequest | ConvertTo-JSON

[Back to top]