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

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-error-response-dto ErrorResponseDto ErrorResponseDto ErrorResponseDto pythonsdk
python
Python
sdk
ErrorResponseDto
BetaErrorResponseDto
/tools/sdk/python/beta/models/error-response-dto
SDK
Software Development Kit
ErrorResponseDto
BetaErrorResponseDto

ErrorResponseDto

Properties

Name Type Description Notes
detail_code str Fine-grained error code providing more detail of the error. [optional]
tracking_id str Unique tracking id for the error. [optional]
messages []ErrorMessageDto Generic localized reason for error [optional]
causes []ErrorMessageDto Plain-text descriptive reasons to provide additional detail to the text provided in the messages field [optional]
}

Example

from sailpoint.beta.models.error_response_dto import ErrorResponseDto

error_response_dto = ErrorResponseDto(
detail_code='400.1 Bad Request Content',
tracking_id='e7eab60924f64aa284175b9fa3309599',
messages=[
                    sailpoint.beta.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.beta.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]