mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.8 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| error-response-dto | ErrorResponseDto | ErrorResponseDto | ErrorResponseDto | pythonsdk |
|
/tools/sdk/python/v3/models/error-response-dto |
|
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.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.Error Message Dto(
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.Error Message Dto(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'The request was syntactically correct but its content is semantically invalid.', )
]
)