Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccountActivity.md
2025-07-25 19:23:51 +00:00

5.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-activity AccountActivity AccountActivity AccountActivity pythonsdk
python
Python
sdk
AccountActivity
V2025AccountActivity
/tools/sdk/python/v2025/models/account-activity
SDK
Software Development Kit
AccountActivity
V2025AccountActivity

AccountActivity

Properties

Name Type Description Notes
id str Id of the account activity [optional]
name str The name of the activity [optional]
created datetime When the activity was first created [optional]
modified datetime When the activity was last modified [optional]
completed datetime When the activity was completed [optional]
completion_status CompletionStatus [optional]
type str The type of action the activity performed. Please see the following list of types. This list may grow over time. - CloudAutomated - IdentityAttributeUpdate - appRequest - LifecycleStateChange - AccountStateUpdate - AccountAttributeUpdate - CloudPasswordRequest - Attribute Synchronization Refresh - Certification - Identity Refresh - Lifecycle Change Refresh Learn more here. [optional]
requester_identity_summary IdentitySummary [optional]
target_identity_summary IdentitySummary [optional]
errors []str A list of error messages, if any, that were encountered. [optional]
warnings []str A list of warning messages, if any, that were encountered. [optional]
items []AccountActivityItem Individual actions performed as part of this account activity [optional]
execution_status ExecutionStatus [optional]
client_metadata map[string]str Arbitrary key-value pairs, if any were included in the corresponding access request [optional]
}

Example

from sailpoint.v2025.models.account_activity import AccountActivity

account_activity = AccountActivity(
id='2c9180835d2e5168015d32f890ca1581',
name='2c9180835d2e5168015d32f890ca1581',
created='2017-07-11T18:45:37.098Z',
modified='2018-06-25T20:22:28.104Z',
completed='2018-10-19T13:49:37.385Z',
completion_status='SUCCESS',
type='appRequest',
requester_identity_summary=sailpoint.v2025.models.identity_summary.Identity Summary(
                    id = 'ff80818155fe8c080155fe8d925b0316', 
                    name = 'SailPoint Services', 
                    identity_id = 'c15b9f5cca5a4e9599eaa0e64fa921bd', 
                    completed = True, ),
target_identity_summary=sailpoint.v2025.models.identity_summary.Identity Summary(
                    id = 'ff80818155fe8c080155fe8d925b0316', 
                    name = 'SailPoint Services', 
                    identity_id = 'c15b9f5cca5a4e9599eaa0e64fa921bd', 
                    completed = True, ),
errors=[sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.],
warnings=[Some warning, another warning],
items=[
                    sailpoint.v2025.models.account_activity_item.Account Activity Item(
                        id = '48c545831b264409a81befcabb0e3c5a', 
                        name = '48c545831b264409a81befcabb0e3c5a', 
                        requested = '2017-07-11T18:45:37.098Z', 
                        approval_status = 'PENDING', 
                        provisioning_status = 'PENDING', 
                        requester_comment = sailpoint.v2025.models.comment.Comment(
                            commenter_id = '2c918084660f45d6016617daa9210584', 
                            commenter_name = 'Adam Kennedy', 
                            body = 'Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.', 
                            date = '2017-07-11T18:45:37.098Z', ), 
                        reviewer_identity_summary = sailpoint.v2025.models.identity_summary.Identity Summary(
                            id = 'ff80818155fe8c080155fe8d925b0316', 
                            name = 'SailPoint Services', 
                            identity_id = 'c15b9f5cca5a4e9599eaa0e64fa921bd', 
                            completed = True, ), 
                        reviewer_comment = sailpoint.v2025.models.comment.Comment(
                            commenter_id = '2c918084660f45d6016617daa9210584', 
                            commenter_name = 'Adam Kennedy', 
                            body = 'Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.', 
                            date = '2017-07-11T18:45:37.098Z', ), 
                        operation = 'ADD', 
                        attribute = 'detectedRoles', 
                        value = 'Treasury Analyst [AccessProfile-1529010191212]', 
                        native_identity = 'Sandie.Camero', 
                        source_id = '2c91808363ef85290164000587130c0c', 
                        account_request_info = sailpoint.v2025.models.account_request_info.Account Request Info(
                            requested_object_id = '2c91808563ef85690164001c31140c0c', 
                            requested_object_name = 'Treasury Analyst', 
                            requested_object_type = 'ACCESS_PROFILE', ), 
                        client_metadata = {customKey1=custom value 1, customKey2=custom value 2}, 
                        remove_date = '2020-07-11T00:00Z', )
                    ],
execution_status='COMPLETED',
client_metadata={customKey1=custom value 1, customKey2=custom value 2}
)

[Back to top]