Browse SDKs · React Native
SDKsReact Native

Get sent friend applications

Get sent friend requests with the OpenIM React Native SDK.

Copy

Call getFriendApplicationListAsApplicant() to page through friend requests sent by the current user.

const applications = await OpenIMSDK.getFriendApplicationListAsApplicant({
  offset: 0,
  count: 20,
});

Parameter description

ParameterTypeRequiredDescription
offsetnumberYesPagination offset. Use 0 for the first page.
countnumberYesNumber of requests to retrieve.

The method returns the current page as FriendApplicationItem[]. See Get received friend requests for request fields.