Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccountRequest.md
2025-04-01 09:23:12 -04:00

1.8 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
v2025-account-request AccountRequest AccountRequest AccountRequest pythonsdk
python
Python
sdk
AccountRequest
V2025AccountRequest
/tools/sdk/python/v2025/models/account-request
SDK
Software Development Kit
AccountRequest
V2025AccountRequest

AccountRequest

Properties

Name Type Description Notes
account_id str Unique ID of the account [optional]
attribute_requests []AttributeRequest [optional]
op str The operation that was performed [optional]
provisioning_target AccountSource [optional]
result AccountRequestResult [optional]
source AccountSource [optional]
}

Example

from sailpoint.v2025.models.account_request import AccountRequest

account_request = AccountRequest(
account_id='John.Doe',
attribute_requests=[
                    sailpoint.v2025.models.attribute_request.AttributeRequest(
                        name = 'groups', 
                        op = 'Add', 
                        value = null, )
                    ],
op='Modify',
provisioning_target=,
result=sailpoint.v2025.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]