await client.Users.GetAsync("123");Retrieving Users
The retrieving users' endpoint allows you to retrieve a user by their ID.
resp, err := client.Users().Delete(context.TODO(), "123")
if err != nil {
panic(err)
}The retrieving users' endpoint allows you to retrieve a user by their ID.
resp, err := client.Users().Delete(context.TODO(), "123")
if err != nil {
panic(err)
}