Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/RequestedAccountRef.md
2025-03-25 05:01:46 +00:00

1.3 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
beta-requested-account-ref RequestedAccountRef RequestedAccountRef RequestedAccountRef pythonsdk
python
Python
sdk
RequestedAccountRef
BetaRequestedAccountRef
/tools/sdk/python/beta/models/requested-account-ref
SDK
Software Development Kit
RequestedAccountRef
BetaRequestedAccountRef

RequestedAccountRef

Properties

Name Type Description Notes
name str Display name of the account for the user [optional]
type DtoType [optional]
account_uuid str The uuid for the account [optional]
account_id str The native identity for the account [optional]
source_name str Display name of the source for the account [optional]
}

Example

from sailpoint.beta.models.requested_account_ref import RequestedAccountRef

requested_account_ref = RequestedAccountRef(
name='Glen.067da3248e914',
type='IDENTITY',
account_uuid='{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
account_id='CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
source_name='Multi Account AD source name'
)

[Back to top]