For the complete documentation index, see llms.txt. This page is also available as Markdown.

getUserById

API - gets a User by id

return function()
    local findUser = getUserById('7135267');

    if findUser ~= nil then
        log('found the user: ' .. findUser.displayName);
    else
        log('could not find target user');
    end
end
User

Last updated