The retrieving users' endpoint allows you to retrieve a user by their ID.
await client.Users.GetAsync("123");
client.user("123").get();
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) }