---
title: "requestFullAccessToReminders(completion:)"
framework: eventkit
role: symbol
role_heading: Instance Method
path: "eventkit/ekeventstore/requestfullaccesstoreminders(completion:)"
---

# requestFullAccessToReminders(completion:)

Prompts people to grant or deny read and write access to reminders.

## Declaration

```swift
func requestFullAccessToReminders(completion: @escaping @Sendable (Bool, (any Error)?) -> Void)
```

```swift
func requestFullAccessToReminders() async throws -> Bool
```

## Parameters

- `completion`: The block to call when the request completes.

## Mentioned in

Accessing the event store

## Discussion

Discussion Requesting access to an event store asynchronously prompts people for permission to use their data. The operating system only prompts them the first time your app requests access to reminders; any subsequent instantiations of EKEventStore uses existing permissions. When they grant or deny access, EventKit calls the completion handler on an arbitrary queue. Your app isn’t blocked while the person decides to grant or deny permission. Because they may deny permission, your app should handle cases where it doesn’t receive access to the event store. important: If your app has never requested access, you must request access to reminders before attempting to fetch or create them. If you request reminders before prompting the person for access with this method, you’ll need to reset the event store with the reset() method to receive data after they grant access.

## See Also

### Requesting access to events and reminders

- [requestWriteOnlyAccessToEvents(completion:)](eventkit/ekeventstore/requestwriteonlyaccesstoevents(completion:).md)
- [requestFullAccessToEvents(completion:)](eventkit/ekeventstore/requestfullaccesstoevents(completion:).md)
- [authorizationStatus(for:)](eventkit/ekeventstore/authorizationstatus(for:).md)
- [EKAuthorizationStatus](eventkit/ekauthorizationstatus.md)
- [EKEventStoreRequestAccessCompletionHandler](eventkit/ekeventstorerequestaccesscompletionhandler.md)
- [NSCalendarsFullAccessUsageDescription](bundleresources/information-property-list/nscalendarsfullaccessusagedescription.md)
- [NSCalendarsWriteOnlyAccessUsageDescription](bundleresources/information-property-list/nscalendarswriteonlyaccessusagedescription.md)
- [NSRemindersFullAccessUsageDescription](bundleresources/information-property-list/nsremindersfullaccessusagedescription.md)
