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

AccessRequestApprovalAction

An approval or rejection decision on an access request.

type AccessRequestApprovalAction implements AccessRequestAction {
  decision: ApprovalDecision
  id: ID!
  performedAt: Time
  performedBy: User
  reason: String
}

Fields

decision ● ApprovalDecision enum

The approval decision. Null if no decision has been submitted yet.

id ● ID! non-null scalar

Unique identifier of the action.

performedAt ● Time scalar

When the action was performed. Null if no decision has been submitted yet.

performedBy ● User object

The user who performed the action.

reason ● String scalar

Free-text reason provided by the approver alongside the decision. Null if not provided.

Interfaces

AccessRequestAction interface

An action performed on an access request.

Member Of

AccessRequestApprovalActionList object

Implemented By

AccessRequestActionResult union

Last updated

Was this helpful?