User
User object
Field | Type | Description |
---|---|---|
id | long | |
avatar | string | |
display_name | string | |
username | string | username in lowercase, special characters - and _ allowed |
email? | string | not null only in GET and PATCH /users/@me |
channels? | array of channel objects | not null only in GET and PATCH /users/@me |
flags | long | user flags |
type | integer | user type |
created_at | timestamp |
User flags
Value | Flag | Description |
---|---|---|
1 << 0 (1) | AWAITING_CONFIRMATION | User wait for email confirmation |
1 << 1 (2) | EMAIL_VERIFIED | User has a verified email |
1 << 2 (4) | DISABLED | User disabled |
User types
Value | Type |
---|---|
1 | USER |
2 | BOT |