Skip to main content

AccountRequest

Properties

NameTypeDescriptionNotes
account_idstrUnique ID of the account[optional]
attribute_requests[]AttributeRequest[optional]
opstrThe operation that was performed[optional]
provisioning_targetAccountSource[optional]
resultAccountRequestResult[optional]
sourceAccountSource[optional]
}

Example

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 = null, )
],
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]