Skip to main content

Referenceresponse

Response reference: required id and type; optional name when display metadata resolves (omitted if not). For request bodies use ReferenceInput (id and type only).

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the referenced object.[required]
namestrOptional display name when metadata resolves. Omitted when unknown or not resolvable.[optional] [readonly]
typestrThe type of the referenced object.[required]
}

Example

from sailpoint.sod_violations.models.referenceresponse import Referenceresponse

referenceresponse = Referenceresponse(
id='3e07886555ed43cfb83c85c58d2016e6',
name='John Doe',
type='IDENTITY'
)

[Back to top]