Skip to main content

Error

Properties

NameTypeDescriptionNotes
detail_codestrDetailCode is the text of the status code returned[optional]
messages[]ErrorMessage[optional]
tracking_idstrTrackingID is the request tracking unique identifier[optional]
}

Example

from sailpoint.v2024.models.error import Error

error = Error(
detail_code='Internal Server Error',
messages=[
sailpoint.v2024.models.error_message_is_the_standard_api_error_response_message_type/.ErrorMessage is the standard API error response message type.(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'This is an error', )
],
tracking_id='9cd03ef80e6a425eb6b11bdbb057cdb4'
)

[Back to top]