mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
62
docs/tools/sdk/python/Reference/V3/Models/AccountRequest.md
Normal file
62
docs/tools/sdk/python/Reference/V3/Models/AccountRequest.md
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
id: account-request
|
||||
title: AccountRequest
|
||||
pagination_label: AccountRequest
|
||||
sidebar_label: AccountRequest
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AccountRequest', 'AccountRequest']
|
||||
slug: /tools/sdk/python/v3/models/account-request
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountRequest', 'AccountRequest']
|
||||
---
|
||||
|
||||
# AccountRequest
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**account_id** | **str** | Unique ID of the account | [optional]
|
||||
**attribute_requests** | [**[]AttributeRequest**](attribute-request) | | [optional]
|
||||
**op** | **str** | The operation that was performed | [optional]
|
||||
**provisioning_target** | [**AccountSource**](account-source) | | [optional]
|
||||
**result** | [**AccountRequestResult**](account-request-result) | | [optional]
|
||||
**source** | [**AccountSource**](account-source) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.account_request import AccountRequest
|
||||
|
||||
account_request = AccountRequest(
|
||||
account_id='John.Doe',
|
||||
attribute_requests=[
|
||||
sailpoint.v3.models.attribute_request.AttributeRequest(
|
||||
name = 'groups',
|
||||
op = 'Add',
|
||||
value = '3203537556531076', )
|
||||
],
|
||||
op='Modify',
|
||||
provisioning_target=,
|
||||
result=sailpoint.v3.models.account_request_result.AccountRequest_result(
|
||||
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 = '', ),
|
||||
source=
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user