[**react-native-notify-kit**](react-native/reference/index)

---

[react-native-notify-kit](react-native/reference/index) / AuthorizationStatus

# Enumeration: AuthorizationStatus

Defined in: [packages/react-native/src/types/Notification.ts:506](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/Notification.ts#L506)

An enum representing the notification authorization status for this app on the device.

Value is greater than 0 if authorized, compare against an exact status (e.g. PROVISIONAL) for a more
granular status.

## Enumeration Members

### AUTHORIZED

> **AUTHORIZED**: `1`

Defined in: [packages/react-native/src/types/Notification.ts:525](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/Notification.ts#L525)

The app is authorized to create notifications.

---

### DENIED

> **DENIED**: `0`

Defined in: [packages/react-native/src/types/Notification.ts:520](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/Notification.ts#L520)

The app is not authorized to create notifications.

---

### NOT_DETERMINED

> **NOT_DETERMINED**: `-1`

Defined in: [packages/react-native/src/types/Notification.ts:515](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/Notification.ts#L515)

The app user has not yet chosen whether to allow the application to create notifications. Usually
this status is returned prior to the first call of `requestPermission`.

On iOS, this is based on the native `UNAuthorizationStatusNotDetermined`.
On Android 13+ (API 33+), this is returned when the `POST_NOTIFICATIONS` permission has not yet
been requested via `requestPermission()`.

---

### PROVISIONAL

> **PROVISIONAL**: `2`

Defined in: [packages/react-native/src/types/Notification.ts:531](https://github.com/marcocrupi/react-native-notify-kit/blob/main/packages/react-native/src/types/Notification.ts#L531)

The app is currently authorized to post non-interrupting user notifications

#### Platform

ios iOS >= 12
