> 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/input-types/access-request-input.md).

# AccessRequestInput

Input type for creating and updating access requests.

```graphql
input AccessRequestInput {
  anyExpirationAllowed: Boolean
  description: String
  exceptions: [AccessRequestExceptionInput!]
  implementationExpiresAt: Time
  name: String
  what: [AccessRequestWhatInput!]
  who: AccessRequestWhoInput
}
```

### Fields

#### anyExpirationAllowed ● [`Boolean`](/api/graphql/data-access/scalars/boolean.md) scalar <a href="#any-expiration-allowed" id="any-expiration-allowed"></a>

If true, any expiration date can be set by the implementer to satisfy the request.

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

The description for the access request.

#### exceptions ● [`[AccessRequestExceptionInput!]`](/api/graphql/data-access/input-types/access-request-exception-input.md) list input <a href="#exceptions" id="exceptions"></a>

Optional list of Mask or FilterRule exceptions. When non-empty, a GrantVariation is created for the requester instead of the standard Grant flow.

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

Optional expiration date for the request.

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

The display name for the access request.

#### what ● [`[AccessRequestWhatInput!]`](/api/graphql/data-access/input-types/access-request-what-input.md) list input <a href="#what" id="what"></a>

The WHAT items for the acccess request.

#### who ● [`AccessRequestWhoInput`](/api/graphql/data-access/input-types/access-request-who-input.md) input <a href="#who" id="who"></a>

The beneficiaries for the access request.

### Member Of

[`createAccessRequest`](/api/graphql/data-access/mutations/create-access-request.md) mutation
