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,37 @@
---
id: beta-send-token-response
title: SendTokenResponse
pagination_label: SendTokenResponse
sidebar_label: SendTokenResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SendTokenResponse', 'BetaSendTokenResponse']
slug: /tools/sdk/python/beta/models/send-token-response
tags: ['SDK', 'Software Development Kit', 'SendTokenResponse', 'BetaSendTokenResponse']
---
# SendTokenResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**request_id** | **str** | The token request ID | [optional]
**status** | **Enum** [ 'SUCCESS', 'FAILED' ] | Status of sending token | [optional]
**error_message** | **str** | Error messages from token send request | [optional]
}
## Example
```python
from sailpoint.beta.models.send_token_response import SendTokenResponse
send_token_response = SendTokenResponse(
request_id='089899f13a8f4da7824996191587bab9',
status='SUCCESS',
error_message='Unable to sent text message'
)
```
[[Back to top]](#)