Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/InviteIdentitiesRequest.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
v2024-invite-identities-request InviteIdentitiesRequest InviteIdentitiesRequest InviteIdentitiesRequest powershellsdk
powershell
PowerShell
sdk
InviteIdentitiesRequest
V2024InviteIdentitiesRequest
/tools/sdk/powershell/v2024/models/invite-identities-request
SDK
Software Development Kit
InviteIdentitiesRequest
V2024InviteIdentitiesRequest

InviteIdentitiesRequest

Properties

Name Type Description Notes
Ids []String The list of Identities IDs to invite - required when 'uninvited' is false [optional]
Uninvited Boolean indicator (optional) to invite all unregistered identities in the system within a limit 1000. This parameter makes sense only when 'ids' is empty. [optional] [default to $false]

Examples

  • Prepare the resource
$InviteIdentitiesRequest = Initialize-V2024InviteIdentitiesRequest  -Ids [2b568c65bc3c4c57a43bd97e3a8e55, 2c9180867769897d01776ed5f125512f] `
 -Uninvited false
  • Convert the resource to JSON
$InviteIdentitiesRequest | ConvertTo-JSON

[Back to top]