Skip to main content

ErrorResponseDto1

Properties

NameTypeDescriptionNotes
detail_codestrFine-grained error code providing more detail of the error.[optional]
tracking_idstrUnique tracking id for the error.[optional]
messages[]ErrorMessageDto1Generic localized reason for error[optional]
causes[]ErrorMessageDto1Plain-text descriptive reasons to provide additional detail to the text provided in the messages field[optional]
}

Example

from sailpoint.v2025.models.error_response_dto1 import ErrorResponseDto1

error_response_dto1 = ErrorResponseDto1(
detail_code='400.1 Bad Request Content',
tracking_id='e7eab60924f64aa284175b9fa3309599',
messages=[
sailpoint.v2025.models.error_message_dto_1.ErrorMessageDto_1(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
],
causes=[
sailpoint.v2025.models.error_message_dto_1.ErrorMessageDto_1(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)

[Back to top]