Skip to main content

Reference

Reference to an identity or governance group returned in a response.

Properties

NameTypeDescriptionNotes
idstrOpaque identifier in the exact form required by the owning service (case, dashes, etc. must be preserved).[required]
typestrThe type of object being referenced.[required]
namestrHuman-readable name for the referenced identity or governance group when known. Omitted when unknown; null is allowed in the schema when clients send or receive explicit nulls.[optional]
}

Example

from sailpoint.sod_controls.models.reference import Reference

reference = Reference(
id='943a7c57da334d07ba2454bf7fcf144f',
type='IDENTITY',
name='John Doe'
)

[Back to top]