--- id: v2024-account-activity-document title: AccountActivityDocument pagination_label: AccountActivityDocument sidebar_label: AccountActivityDocument sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'AccountActivityDocument', 'V2024AccountActivityDocument'] slug: /tools/sdk/python/v2024/models/account-activity-document tags: ['SDK', 'Software Development Kit', 'AccountActivityDocument', 'V2024AccountActivityDocument'] --- # AccountActivityDocument AccountActivity ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | ID of account activity. | [optional] **action** | **str** | Type of action performed in the activity. | [optional] **created** | **datetime** | ISO-8601 date-time referring to the time when the object was created. | [optional] **modified** | **datetime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional] **synced** | **str** | ISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. There may be some delay between the `synced` time and the time when the updated data is actually available in the search API. | [optional] **stage** | **str** | Activity's current stage. | [optional] **status** | **str** | Activity's current status. | [optional] **requester** | [**ActivityIdentity**](activity-identity) | | [optional] **recipient** | [**ActivityIdentity**](activity-identity) | | [optional] **tracking_number** | **str** | Account activity's tracking number. | [optional] **errors** | **[]str** | Errors provided by the source while completing account actions. | [optional] **warnings** | **[]str** | Warnings provided by the source while completing account actions. | [optional] **approvals** | [**[]Approval1**](approval1) | Approvals performed on an item during activity. | [optional] **original_requests** | [**[]OriginalRequest**](original-request) | Original actions that triggered all individual source actions related to the account action. | [optional] **expansion_items** | [**[]ExpansionItem**](expansion-item) | Controls that translated the attribute requests into actual provisioning actions on the source. | [optional] **account_requests** | [**[]AccountRequest**](account-request) | Account data for each individual source action triggered by the original requests. | [optional] **sources** | **str** | Sources involved in the account activity. | [optional] } ## Example ```python from sailpoint.v2024.models.account_activity_document import AccountActivityDocument account_activity_document = AccountActivityDocument( id='2c91808375d8e80a0175e1f88a575222', action='Identity Refresh.', created='2018-06-25T20:22:28.104Z', modified='2018-06-25T20:22:28.104Z', synced='2018-06-25T20:22:28.104Z', stage='Completed', status='Complete', requester=, recipient=, tracking_number='61aad0c9e8134eca89e76a35e0cabe3f', errors=[ '' ], warnings=[ '' ], approvals=[ sailpoint.v2024.models.approval_1.Approval_1( comments = [ sailpoint.v2024.models.approval_comment_2.ApprovalComment_2( comment = 'This request was autoapproved by our automated ETS subscriber.', commenter = 'Automated AR Approval', date = '2018-06-25T20:22:28.104Z', ) ], modified = '2018-06-25T20:22:28.104Z', owner = null, result = 'Finished', attribute_request = sailpoint.v2024.models.attribute_request.AttributeRequest( name = 'groups', op = 'Add', value = null, ), source = null, ) ], original_requests=[ sailpoint.v2024.models.original_request.OriginalRequest( account_id = 'CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com', result = sailpoint.v2024.models.result.Result( status = 'Manual Task Created', ), attribute_requests = [ sailpoint.v2024.models.attribute_request.AttributeRequest( name = 'groups', op = 'Add', value = null, ) ], op = 'add', source = null, ) ], expansion_items=[ sailpoint.v2024.models.expansion_item.ExpansionItem( account_id = '2c91808981f58ea601821c3e93482e6f', cause = 'Role', name = 'smartsheet-role', attribute_request = sailpoint.v2024.models.attribute_request.AttributeRequest( name = 'groups', op = 'Add', value = null, ), source = null, id = 'ac2887ffe0e7435a8c18c73f7ae94c7b', state = 'EXECUTING', ) ], account_requests=[ sailpoint.v2024.models.account_request.AccountRequest( account_id = 'John.Doe', attribute_requests = [ sailpoint.v2024.models.attribute_request.AttributeRequest( name = 'groups', op = 'Add', value = null, ) ], op = 'Modify', provisioning_target = null, result = sailpoint.v2024.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 = null, ) ], sources='smartsheet-test, airtable-v4, IdentityNow' ) ``` [[Back to top]](#)