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

1.2 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
v2024-error Error Error Error pythonsdk
python
Python
sdk
Error
V2024Error
/tools/sdk/python/v2024/models/error
SDK
Software Development Kit
Error
V2024Error

Error

Properties

Name Type Description Notes
detail_code str DetailCode is the text of the status code returned [optional]
messages []ErrorMessage [optional]
tracking_id str TrackingID is the request tracking unique identifier [optional]
}

Example

from sailpoint.v2024.models.error import Error

error = Error(
detail_code='Internal Server Error',
messages=[
                    sailpoint.v2024.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]