Ruby
Select your Platform:
backend SDKs
client SDKs
Retrieving Users
Confused about "Retrieving Users"?
Let us know how we can improve our documentation:
LAST EDIT Feb 08 2021
The retrieving users' endpoint allows you to retrieve a user by their ID.
1
client.user('123').get();
1
client.users.get("123")
1
client.users.get("123")
1
$client->users()->get('42');
1
client.user("123").get().join();
1
user, err := client.Users().Get("123")
1
client.get(userId: "123") { result in /* ... */ }
1
await client.Users.Get("123");