mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
---
|
||||
id: v2025-account-request-result
|
||||
title: AccountRequestResult
|
||||
pagination_label: AccountRequestResult
|
||||
sidebar_label: AccountRequestResult
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AccountRequestResult', 'V2025AccountRequestResult']
|
||||
slug: /tools/sdk/python/v2025/models/account-request-result
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountRequestResult', 'V2025AccountRequestResult']
|
||||
---
|
||||
|
||||
# AccountRequestResult
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**errors** | **[]str** | Error message. | [optional]
|
||||
**status** | **str** | The status of the account request | [optional]
|
||||
**ticket_id** | **str** | ID of associated ticket. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.account_request_result import AccountRequestResult
|
||||
|
||||
account_request_result = AccountRequestResult(
|
||||
errors=[
|
||||
'[ConnectorError] [
|
||||
{
|
||||
"code": "unrecognized_keys",
|
||||
"keys": [
|
||||
"groups"
|
||||
],
|
||||
"path": [],
|
||||
"message": "Unrecognized key(s) in object: 'groups'"
|
||||
}
|
||||
] (requestId: 5e9d6df5-9b1b-47d9-9bf1-dc3a2893299e)'
|
||||
],
|
||||
status='failed',
|
||||
ticket_id=''
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user