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,44 @@
---
id: beta-get-form-definition-by-key400-response
title: GetFormDefinitionByKey400Response
pagination_label: GetFormDefinitionByKey400Response
sidebar_label: GetFormDefinitionByKey400Response
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'GetFormDefinitionByKey400Response', 'BetaGetFormDefinitionByKey400Response']
slug: /tools/sdk/python/beta/models/get-form-definition-by-key400-response
tags: ['SDK', 'Software Development Kit', 'GetFormDefinitionByKey400Response', 'BetaGetFormDefinitionByKey400Response']
---
# GetFormDefinitionByKey400Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**detail_code** | **str** | | [optional]
**messages** | [**[]ErrorMessage**](error-message) | | [optional]
**status_code** | **int** | | [optional]
**tracking_id** | **str** | | [optional]
}
## Example
```python
from sailpoint.beta.models.get_form_definition_by_key400_response import GetFormDefinitionByKey400Response
get_form_definition_by_key400_response = GetFormDefinitionByKey400Response(
detail_code='',
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', )
],
status_code=56,
tracking_id=''
)
```
[[Back to top]](#)