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: beta-token-auth-request
title: TokenAuthRequest
pagination_label: TokenAuthRequest
sidebar_label: TokenAuthRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TokenAuthRequest', 'BetaTokenAuthRequest']
slug: /tools/sdk/powershell/beta/models/token-auth-request
tags: ['SDK', 'Software Development Kit', 'TokenAuthRequest', 'BetaTokenAuthRequest']
---
# TokenAuthRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Token** | **String** | Token value | [required]
**UserAlias** | **String** | User alias from table spt_identity field named 'name' | [required]
**DeliveryType** | **Enum** [ "SMS_PERSONAL", "VOICE_PERSONAL", "SMS_WORK", "VOICE_WORK", "EMAIL_WORK", "EMAIL_PERSONAL" ] | Token delivery type | [required]
## Examples
- Prepare the resource
```powershell
$TokenAuthRequest = Initialize-PSSailpoint.BetaTokenAuthRequest -Token 12345 `
-UserAlias will.albin `
-DeliveryType EMAIL_WORK
```
- Convert the resource to JSON
```powershell
$TokenAuthRequest | ConvertTo-JSON
```
[[Back to top]](#)