Skip to main content

AccessRequestPreApproval1

Properties

NameTypeDescriptionNotes
approvedboolWhether or not to approve the access request.[required]
commentstrA comment about the decision to approve or deny the request.[required]
approverstrThe name of the entity that approved or denied the request.[required]
}

Example

from sailpoint.beta.models.access_request_pre_approval1 import AccessRequestPreApproval1

access_request_pre_approval1 = AccessRequestPreApproval1(
approved=False,
comment='This access should be denied, because this will cause an SOD violation.',
approver='AcmeCorpExternalIntegration'
)

[Back to top]