Files
developer.sailpoint.com/docs/tools/sdk/powershell/reference/v2024/Models/AccountRequestResult.md
2025-01-27 16:35:26 -05:00

1001 B

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

AccountRequestResult

Properties

Name Type Description Notes
Errors Pointer to []String [optional]
Status Pointer to String The status of the account request [optional]
TicketId Pointer to String [optional]

Examples

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

[Back to top]