adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-bulk-identities-accounts-response
title: BulkIdentitiesAccountsResponse
pagination_label: BulkIdentitiesAccountsResponse
sidebar_label: BulkIdentitiesAccountsResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BulkIdentitiesAccountsResponse']
slug: /tools/sdk/powershell/v2024/models/bulk-identities-accounts-response
tags: ['SDK', 'Software Development Kit', 'BulkIdentitiesAccountsResponse']
---
# BulkIdentitiesAccountsResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Identifier of bulk request item. | [optional]
**StatusCode** | Pointer to **Int32** | Response status value. | [optional]
**Message** | Pointer to **String** | Status containing additional context information about failures. | [optional]
## Examples
- Prepare the resource
```powershell
$BulkIdentitiesAccountsResponse = Initialize-PSSailpoint.V2024BulkIdentitiesAccountsResponse -Id 2c9180858082150f0180893dbaf553fe `
-StatusCode 404 `
-Message Referenced identity "2c9180858082150f0180893dbaf553fe" was not found.
```
- Convert the resource to JSON
```powershell
$BulkIdentitiesAccountsResponse | ConvertTo-JSON
```
[[Back to top]](#)