mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user