Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccountActivitySearchedItem.md
2025-03-10 11:34:32 -04:00

6.7 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
v2024-account-activity-searched-item AccountActivitySearchedItem AccountActivitySearchedItem AccountActivitySearchedItem pythonsdk
python
Python
sdk
AccountActivitySearchedItem
V2024AccountActivitySearchedItem
/tools/sdk/python/v2024/models/account-activity-searched-item
SDK
Software Development Kit
AccountActivitySearchedItem
V2024AccountActivitySearchedItem

AccountActivitySearchedItem

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 [optional]
recipient ActivityIdentity [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 Approvals performed on an item during activity. [optional]
original_requests []OriginalRequest Original actions that triggered all individual source actions related to the account action. [optional]
expansion_items []ExpansionItem Controls that translated the attribute requests into actual provisioning actions on the source. [optional]
account_requests []AccountRequest Account data for each individual source action triggered by the original requests. [optional]
sources str Sources involved in the account activity. [optional]
}

Example

from sailpoint.v2024.models.account_activity_searched_item import AccountActivitySearchedItem

account_activity_searched_item = AccountActivitySearchedItem(
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]