rozod
    Preparing search index...

    Variable getMyFriendsRequestsConst Api Param

    getMyFriendsRequests: EndpointGeneric<
        {
            cursor?: string;
            limit?: 10
            | 18
            | 25
            | 50
            | 100;
            sortOrder?: "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;
        },
        undefined,
    > = ...

    GET https://friends.roblox.com/v1/my/friends/requests Get all users that friend requests with targetUserId using exclusive start paging limit The number of results per request. cursor The paging cursor for the previous or next page. sortOrder Sorted by scoring requests based on request time, mutual friends, and request origin