adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 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', 'V2024BulkIdentitiesAccountsResponse']
slug: /tools/sdk/powershell/v2024/models/bulk-identities-accounts-response
tags: ['SDK', 'Software Development Kit', 'BulkIdentitiesAccountsResponse', 'V2024BulkIdentitiesAccountsResponse']
---
# 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]](#)