Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/AccountRequest.md
2025-01-28 13:29:29 -05:00

1.3 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 Pointer to String Unique ID of the account [optional]
AttributeRequests Pointer to []AttributeRequest [optional]
Op Pointer to String The operation that was performed [optional]
ProvisioningTarget Pointer to AccountSource [optional]
Result Pointer to AccountRequestResult [optional]
Source Pointer to AccountSource [optional]

Examples

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

[Back to top]