<!--
{
  "availability" : [
    "iOS: 15.0.0 -",
    "iPadOS: 15.0.0 -",
    "macCatalyst: 15.0.0 -",
    "macOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 8.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "ThreadNetwork",
  "identifier" : "/documentation/ThreadNetwork/THClient/retrieveAllCredentials(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "ThreadNetwork"
    ],
    "preciseIdentifier" : "c:objc(cs)THClient(im)retrieveAllCredentials:"
  },
  "title" : "retrieveAllCredentials(_:)"
}
-->

# retrieveAllCredentials(_:)

Requests all Thread credentials from the framework.

```
func retrieveAllCredentials(_ completion: @escaping @Sendable (Set<THCredentials>?, (any Error)?) -> Void)
```

```
func allCredentials() async throws -> Set<THCredentials>
```

## Parameters

`completion`

The completion handler the framework calls when the credentials become available.

## Discussion> Concurrency note: 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 allCredentials() async throws -> Set<THCredentials>
> ```
> 
> For information about concurrency and asynchronous code in Swift, see <doc://com.apple.documentation/documentation/Swift/calling-objective-c-apis-asynchronously>.

The framework identifies the developer by the team ID. When calling this method,
you receive credentials for your team ID only.

Call the method as follows:

```swift
func obtainAllCredentials() async -> (Set<THCredentials>?, Error?) {
    let client = THClient()
    var credentials: Set<THCredentials>?
    var err:Error?
    do {
        credentials = try await client.allCredentials()
    } catch {
        err = error
    }
    return (credentials, err)
}
```

---

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)