For the complete documentation index, see llms.txt. This page is also available as Markdown.

SubmitAccessRequestApprovalDecisionInput

Input for submitting an approval decision on an access request.

input SubmitAccessRequestApprovalDecisionInput {
  accessRequestId: ID!
  decision: ApprovalDecision!
  performedBy: ID!
  reason: String
}

Fields

accessRequestId ● ID! non-null scalar

The ID of the access request the decision is being submitted for.

decision ● ApprovalDecision! non-null enum

The approval decision.

performedBy ● ID! non-null scalar

The Collibra User UUID of the user performing the decision; translated to a Data Access user ID server-side.

reason ● String scalar

Optional free-text reason provided by the approver alongside the decision.

Member Of

submitAccessRequestApprovalDecision mutation

Last updated

Was this helpful?