SDKsReact Native
Get sent friend applications
Get sent friend requests with the OpenIM React Native SDK.
Call getFriendApplicationListAsApplicant() to page through friend requests sent by the current user.
const applications = await OpenIMSDK.getFriendApplicationListAsApplicant({
offset: 0,
count: 20,
});Parameter description
| Parameter | Type | Required | Description |
|---|---|---|---|
offset | number | Yes | Pagination offset. Use 0 for the first page. |
count | number | Yes | Number of requests to retrieve. |
The method returns the current page as FriendApplicationItem[]. See Get received friend requests for request fields.
Was this page helpful?