help.getUserInfo
Can only be used by TSF members to obtain internal information.
func (c *Client) HelpGetUserInfo(ctx context.Context, userid InputUserClass) (HelpUserInfoClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.HelpGetUserInfo(ctx, userid)
if err != nil {
return err
}
_ = res // HelpUserInfoClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
UserID | InputUserClass | yes | User ID |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 403 | USER_INVALID | Invalid user provided. |
References
- Official documentation
- Generated Go reference
- TL definition:
help.getUserInfo#38a08d3