starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,49 @@
---
id: error-response-dto
title: ErrorResponseDto
pagination_label: ErrorResponseDto
sidebar_label: ErrorResponseDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ErrorResponseDto', 'ErrorResponseDto']
slug: /tools/sdk/python/v3/models/error-response-dto
tags: ['SDK', 'Software Development Kit', 'ErrorResponseDto', 'ErrorResponseDto']
---
# 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**](error-message-dto) | Generic localized reason for error | [optional]
**causes** | [**[]ErrorMessageDto**](error-message-dto) | Plain-text descriptive reasons to provide additional detail to the text provided in the messages field | [optional]
}
## Example
```python
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]](#)