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

1.0 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
v2024-account-request-result AccountRequestResult AccountRequestResult AccountRequestResult powershellsdk
powershell
PowerShell
sdk
AccountRequestResult
V2024AccountRequestResult
/tools/sdk/powershell/v2024/models/account-request-result
SDK
Software Development Kit
AccountRequestResult
V2024AccountRequestResult

AccountRequestResult

Properties

Name Type Description Notes
Errors []String Error message. [optional]
Status String The status of the account request [optional]
TicketId String ID of associated ticket. [optional]

Examples

  • Prepare the resource
$AccountRequestResult = Initialize-V2024AccountRequestResult  -Errors null `
 -Status failed `
 -TicketId null
  • Convert the resource to JSON
$AccountRequestResult | ConvertTo-JSON

[Back to top]