Skip to main content

AccessRequestDynamicApprovalResponse

Properties

NameTypeDescriptionNotes
idstrUnique identifier of the approver to add to the approval process. If there is none, send an empty value "".[required]
typeEnum [ 'IDENTITY', 'GOVERNANCE_GROUP' ]Type of approver to add to the approval process. If there is none, send an empty value "".[required]
namestrName of the approver to add to the approval process. If there is none, send an empty value "".[required]
}

Example

from sailpoint.triggers.models.access_request_dynamic_approval_response import AccessRequestDynamicApprovalResponse

access_request_dynamic_approval_response = AccessRequestDynamicApprovalResponse(
id='2c91808b6ef1d43e016efba0ce470906',
type='IDENTITY',
name='Adam Adams'
)

[Back to top]