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,42 @@
---
id: beta-error
title: Error
pagination_label: Error
sidebar_label: Error
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Error', 'BetaError']
slug: /tools/sdk/python/beta/models/error
tags: ['SDK', 'Software Development Kit', 'Error', 'BetaError']
---
# Error
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**detail_code** | **str** | DetailCode is the text of the status code returned | [optional]
**messages** | [**[]ErrorMessage**](error-message) | | [optional]
**tracking_id** | **str** | TrackingID is the request tracking unique identifier | [optional]
}
## Example
```python
from sailpoint.beta.models.error import Error
error = Error(
detail_code='Internal Server Error',
messages=[
sailpoint.beta.models.error_message_is_the_standard_api_error_response_message_type/.ErrorMessage is the standard API error response message type.(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'This is an error', )
],
tracking_id='9cd03ef80e6a425eb6b11bdbb057cdb4'
)
```
[[Back to top]](#)