<!--
{
  "availability" : [
    "iOS: 6.0.0 - 15.0.0",
    "iPadOS: 6.0.0 - 15.0.0",
    "macCatalyst: 13.1.0 - 15.0.0",
    "macOS: 10.8.0 - 12.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "Accounts",
  "identifier" : "/documentation/Accounts/ACAccountStore/requestAccessToAccounts(with:options:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Accounts"
    ],
    "preciseIdentifier" : "c:objc(cs)ACAccountStore(im)requestAccessToAccountsWithType:options:completion:"
  },
  "title" : "requestAccessToAccounts(with:options:completion:)"
}
-->

# requestAccessToAccounts(with:options:completion:)

Obtains permission to access protected user properties.

```
func requestAccessToAccounts(with accountType: ACAccountType!, options: [AnyHashable : Any]! = [:], completion: (@Sendable (Bool, (any Error)?) -> Void)!)
```

## Parameters

`accountType`

The account type.

`options`

A dictionary of options, if options are required by the account type; otherwise, `nil`.

`completion`

The handler to call when the request has completed. The handler is called on an arbitrary queue.

## Discussion

> Important:
> You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration:
> 
> ```swift
> func requestAccessToAccounts(with accountType: ACAccountType!, options: [AnyHashable : Any]! = [:]) async throws -> Bool
> ```
> 
> For information about concurrency and asynchronous code in Swift, see <doc://com.apple.documentation/documentation/Swift/calling-objective-c-apis-asynchronously>.

Certain account types (such as Facebook) require an options dictionary. This method throws an `NSInvalidArgumentException` if the options dictionary isn’t provided for such account types. Conversely, if the account type doesn’t require an options dictionary, the `options` parameter must be `nil`.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)