removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: token-auth-request
title: TokenAuthRequest
pagination_label: TokenAuthRequest
sidebar_label: TokenAuthRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TokenAuthRequest']
slug: /tools/sdk/powershell/beta/models/token-auth-request
tags: ['SDK', 'Software Development Kit', 'TokenAuthRequest']
---
# 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]](#)