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

2.1 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-accounts-selection-request AccountsSelectionRequest AccountsSelectionRequest AccountsSelectionRequest pythonsdk
python
Python
sdk
AccountsSelectionRequest
V2025AccountsSelectionRequest
/tools/sdk/python/v2025/models/accounts-selection-request
SDK
Software Development Kit
AccountsSelectionRequest
V2025AccountsSelectionRequest

AccountsSelectionRequest

Properties

Name Type Description Notes
requested_for []str A list of Identity IDs for whom the Access is requested. [required]
request_type AccessRequestType [optional]
requested_items []AccessRequestItem [required]
client_metadata map[string]str Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities. [optional]
}

Example

from sailpoint.v2025.models.accounts_selection_request import AccountsSelectionRequest

accounts_selection_request = AccountsSelectionRequest(
requested_for=2c918084660f45d6016617daa9210584,
request_type='GRANT_ACCESS',
requested_items=[
                    sailpoint.v2025.models.access_request_item.Access Request Item(
                        type = 'ACCESS_PROFILE', 
                        id = '2c9180835d2e5168015d32f890ca1581', 
                        comment = 'Requesting access profile for John Doe', 
                        client_metadata = {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}, 
                        remove_date = '2020-07-11T21:23:15Z', 
                        assignment_id = 'ee48a191c00d49bf9264eb0a4fc3a9fc', 
                        native_identity = 'CN=User db3377de14bf,OU=YOURCONTAINER, DC=YOURDOMAIN', )
                    ],
client_metadata={requestedAppId=2c91808f7892918f0178b78da4a305a1, requestedAppName=test-app}
)

[Back to top]