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,37 @@
---
id: v2024-identity-sync-payload
title: IdentitySyncPayload
pagination_label: IdentitySyncPayload
sidebar_label: IdentitySyncPayload
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentitySyncPayload', 'V2024IdentitySyncPayload']
slug: /tools/sdk/powershell/v2024/models/identity-sync-payload
tags: ['SDK', 'Software Development Kit', 'IdentitySyncPayload', 'V2024IdentitySyncPayload']
---
# IdentitySyncPayload
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **String** | Payload type. | [required]
**DataJson** | **String** | Payload type. | [required]
## Examples
- Prepare the resource
```powershell
$IdentitySyncPayload = Initialize-PSSailpoint.V2024IdentitySyncPayload -Type SYNCHRONIZE_IDENTITY_ATTRIBUTES `
-DataJson {"identityId":"2c918083746f642c01746f990884012a"}
```
- Convert the resource to JSON
```powershell
$IdentitySyncPayload | ConvertTo-JSON
```
[[Back to top]](#)