adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,37 @@
---
id: invite-identities-request
title: InviteIdentitiesRequest
pagination_label: InviteIdentitiesRequest
sidebar_label: InviteIdentitiesRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'InviteIdentitiesRequest']
slug: /tools/sdk/powershell/beta/models/invite-identities-request
tags: ['SDK', 'Software Development Kit', 'InviteIdentitiesRequest']
---
# InviteIdentitiesRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Ids** | Pointer to **[]String** | The list of Identities IDs to invite - required when 'uninvited' is false | [optional]
**Uninvited** | Pointer to **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
```powershell
$InviteIdentitiesRequest = Initialize-PSSailpoint.BetaInviteIdentitiesRequest -Ids [2b568c65bc3c4c57a43bd97e3a8e55, 2c9180867769897d01776ed5f125512f] `
-Uninvited false
```
- Convert the resource to JSON
```powershell
$InviteIdentitiesRequest | ConvertTo-JSON
```
[[Back to top]](#)