Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/SendTokenResponse.md
2025-02-20 12:59:19 -05:00

1018 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
send-token-response SendTokenResponse SendTokenResponse SendTokenResponse pythonsdk
python
Python
sdk
SendTokenResponse
SendTokenResponse
/tools/sdk/python/v3/models/send-token-response
SDK
Software Development Kit
SendTokenResponse
SendTokenResponse

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

from sailpoint.v3.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]