Skip to main content

SendTokenResponse

Properties

NameTypeDescriptionNotes
request_idstrThe token request ID[optional]
statusEnum [ 'SUCCESS', 'FAILED' ]Status of sending token[optional]
error_messagestrError messages from token send request[optional]
}

Example

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]