Variable getUsersUseridFriendsStatusesConst

getUsersUseridFriendsStatuses: EndpointGeneric<{
    userId: number;
    userIds: number[];
}, {
    data: {
        id: number;
        status:
            | 0
            | 1
            | 2
            | 3;
    }[];
}, any> = ...

GET https://friends.roblox.com/v1/users/:userId/friends/statuses

Gets a list of friend statuses of specified users against the specified user.

The user to check the friend statuses against.