starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,35 @@
---
id: send-token-request
title: SendTokenRequest
pagination_label: SendTokenRequest
sidebar_label: SendTokenRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SendTokenRequest', 'SendTokenRequest']
slug: /tools/sdk/python/v3/models/send-token-request
tags: ['SDK', 'Software Development Kit', 'SendTokenRequest', 'SendTokenRequest']
---
# SendTokenRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**user_alias** | **str** | User alias from table spt_identity field named 'name' | [required]
**delivery_type** | **Enum** [ 'SMS_PERSONAL', 'VOICE_PERSONAL', 'SMS_WORK', 'VOICE_WORK', 'EMAIL_WORK', 'EMAIL_PERSONAL' ] | Token delivery type | [required]
}
## Example
```python
from sailpoint.v3.models.send_token_request import SendTokenRequest
send_token_request = SendTokenRequest(
user_alias='will.albin',
delivery_type='EMAIL_WORK'
)
```
[[Back to top]](#)