Skip to main content

ErrorResponseDto

Properties

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

Example

from sailpoint.v3.models.error_response_dto import ErrorResponseDto

error_response_dto = ErrorResponseDto(
detail_code='400.1 Bad Request Content',
tracking_id='e7eab60924f64aa284175b9fa3309599',
messages=[
sailpoint.v3.models.error_message_dto.ErrorMessageDto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
],
causes=[
sailpoint.v3.models.error_message_dto.ErrorMessageDto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)

[Back to top]