Skip to main content

AccessRequestSubmittedResponse

Properties

NameTypeDescriptionNotes
ApprovedBooleanApproval or denial of the request by the subscribing service.[required]
CommentStringComment from the subscribing service approving or denying the request.[required]
ApproverStringName 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]

Examples

  • Prepare the resource
$AccessRequestSubmittedResponse = Initialize-AccessRequestSubmittedResponse -Approved true `
-Comment This access has passed preliminary approval. `
-Approver AcmeCorpExternalIntegration
  • Convert the resource to JSON
$AccessRequestSubmittedResponse | ConvertTo-JSON

[Back to top]