await client.Users.GetAsync("123");
Retrieving Users
The retrieving users’ endpoint allows you to retrieve a user by their ID.
client.user("123").get();
client.users.get("123")
client.users.get("123")
$client->users()->get('42');
client.user("123").get().join();
resp, err := client.Users().Delete(context.TODO(), "123")
if err != nil {
panic(err)
}
- I'm working with the Stream Feeds JavaScript SDK and would like to ask questions about this documentation page: https://getstream.io/activity-feeds/docs/javascript/v2/users_read.md
- View as markdown
- Open in ChatGPT
- Open in Claude