Skip to main content

Createidentitycollectorrequest

Properties

NameTypeDescriptionNotes
namestrThe display name for the new identity collector. Must be unique within the tenant.[required]
source_idstrThe identifier of the source to create the identity collector for, represented as a UUID. Both hyphenated and non-hyphenated formats are accepted. The identity collector type is derived from this source.[required]
}

Example

from sailpoint.data_access_security.models.createidentitycollectorrequest import Createidentitycollectorrequest

createidentitycollectorrequest = Createidentitycollectorrequest(
name='Active Directory Identity Collector',
source_id='2c9180835d2e5168015d32f890ca1581'
)

[Back to top]