Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/RequestedForDtoRef.md
2025-05-14 21:09:18 +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
requested-for-dto-ref RequestedForDtoRef RequestedForDtoRef RequestedForDtoRef pythonsdk
python
Python
sdk
RequestedForDtoRef
RequestedForDtoRef
/tools/sdk/python/v3/models/requested-for-dto-ref
SDK
Software Development Kit
RequestedForDtoRef
RequestedForDtoRef

RequestedForDtoRef

Properties

Name Type Description Notes
identity_id str The identity id for which the access is requested [required]
requested_items []RequestedItemDtoRef the details for the access items that are requested for the identity [required]
}

Example

from sailpoint.v3.models.requested_for_dto_ref import RequestedForDtoRef

requested_for_dto_ref = RequestedForDtoRef(
identity_id='cb89bc2f1ee6445fbea12224c526ba3a',
requested_items=[
                    sailpoint.v3.models.requested_item_dto_ref.RequestedItemDtoRef(
                        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', 
                        account_selection = [
                            sailpoint.v3.models.source_item_ref.SourceItemRef(
                                source_id = 'cb89bc2f1ee6445fbea12224c526ba3a', 
                                accounts = [
                                    sailpoint.v3.models.account_item_ref.AccountItemRef(
                                        account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}', 
                                        native_identity = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local', )
                                    ], )
                            ], )
                    ]
)

[Back to top]