<!--
{
  "availability" : [
    "iOS: 15.0.0 -",
    "iPadOS: 15.0.0 -",
    "macCatalyst: 15.0.0 -",
    "macOS: 12.0.0 -",
    "tvOS: 15.0.0 -",
    "visionOS: -",
    "watchOS: 8.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "CloudKit",
  "identifier" : "/documentation/CloudKit/CKContainer/fetchShareParticipants(forUserRecordIDs:completionHandler:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "CloudKit"
    ],
    "preciseIdentifier" : "s:So11CKContainerC8CloudKitE22fetchShareParticipants16forUserRecordIDs17completionHandlerySaySo10CKRecordIDCG_ys6ResultOySDyAhKySo18CKShareParticipantCs5Error_pGGsAN_pGctF"
  },
  "title" : "fetchShareParticipants(forUserRecordIDs:completionHandler:)"
}
-->

# fetchShareParticipants(forUserRecordIDs:completionHandler:)

Fetches share participants with the specified user record IDs.

```
@preconcurrency func fetchShareParticipants(forUserRecordIDs userRecordIDs: [CKRecord.ID], completionHandler: @escaping @Sendable (Result<[CKRecord.ID : Result<CKShare.Participant, any Error>], any Error>) -> Void)
```

## Parameters

`userRecordIDs`

The share participants’ user record IDs.

`completionHandler`

The handler to execute with the fetch results.

## Discussion

The closure doesn’t return a value and takes the following parameters:

- A dictionary of fetched share participants. The dictionary uses the user record IDs you specify in `userRecordIDs` as its keys. The value of each key is a <doc://com.apple.documentation/documentation/Swift/Result> that contains either the corresponding fetched share participant, or an error that describes why CloudKit can’t fetch that share participant.

This method searches for share participants asynchronously and with a low priority. If you want the task to execute with a higher priority, create an instance of [`CKFetchShareParticipantsOperation`](/documentation/CloudKit/CKFetchShareParticipantsOperation) and configure it to use the necessary priority.

---

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)