Skip to main content

AccessRequestSubmittedResponse

Properties

NameTypeDescriptionNotes
approvedboolApproval or denial of the request by the subscribing service.[required]
commentstrComment from the subscribing service approving or denying the request.[required]
approverstrName of the subscribing service approving the request. This doesn't normally have to be the name of an existing identity in ISC, but it does if you have an active subscription to the Access Request Decision trigger. If you don't provide the username of an existing identity in your tenant, your Access Request Decision subscriptions will never trigger.[required]
}

Example

from sailpoint.triggers.models.access_request_submitted_response import AccessRequestSubmittedResponse

access_request_submitted_response = AccessRequestSubmittedResponse(
approved=True,
comment='This access has passed preliminary approval.',
approver='AcmeCorpExternalIntegration'
)

[Back to top]