Variable getMyFriendsRequestsConst

getMyFriendsRequests: EndpointGeneric<{
    cursor: undefined | string;
    limit:
        | undefined
        | 10
        | 18
        | 25
        | 50
        | 100;
    sortOrder: undefined | "Asc" | "Desc";
}, {
    data: {
        created: string;
        description: string;
        displayName: string;
        externalAppDisplayName: string;
        friendRequest: {
            contactName: string;
            originSourceType:
                | 0
                | 1
                | 2
                | 3
                | 4
                | 5
                | 6
                | 7
                | 8
                | 9;
            senderId: number;
            senderNickname: string;
            sentAt: string;
            sourceUniverseId: number;
        };
        hasVerifiedBadge: boolean;
        id: number;
        isBanned: boolean;
        mutualFriendsList: string[];
        name: string;
    }[];
    nextPageCursor: string;
    previousPageCursor: string;
}, any> = ...

GET https://friends.roblox.com/v1/my/friends/requests

Get all users that friend requests with targetUserId using exclusive start paging

The number of results per request.

The paging cursor for the previous or next page.

Sorted by scoring requests based on request time, mutual friends, and request origin