> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/graphql/data-access/object-types/access-request-approval-action.md).

# AccessRequestApprovalAction

An approval or rejection decision on an access request.

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

### Fields

#### decision ● [`ApprovalDecision`](/api/graphql/data-access/enumerations/approval-decision.md) enum <a href="#decision" id="decision"></a>

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

#### id ● [`ID!`](/api/graphql/data-access/scalars/id.md) non-null scalar <a href="#id" id="id"></a>

Unique identifier of the action.

#### performedAt ● [`Time`](/api/graphql/data-access/scalars/time.md) scalar <a href="#performed-at" id="performed-at"></a>

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

#### performedBy ● [`User`](/api/graphql/data-access/object-types/user.md) object <a href="#performed-by" id="performed-by"></a>

The user who performed the action.

#### reason ● [`String`](/api/graphql/data-access/scalars/string.md) scalar <a href="#reason" id="reason"></a>

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

### Interfaces

#### [`AccessRequestAction`](/api/graphql/data-access/interfaces/access-request-action.md) interface

An action performed on an access request.

### Member Of

[`AccessRequestApprovalActionList`](/api/graphql/data-access/object-types/access-request-approval-action-list.md) object

### Implemented By

[`AccessRequestActionResult`](/api/graphql/data-access/unions/access-request-action-result.md) union
