Get current user guild member. Returns the member information for the authenticated user in the specified guild.
curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members/@me \
--header 'Authorization: <api-key>'{
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
},
"roles": [
"<string>"
],
"joined_at": "2023-11-07T05:31:56Z",
"mute": true,
"deaf": true,
"nick": "<string>",
"avatar": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"communication_disabled_until": "2023-11-07T05:31:56Z",
"profile_flags": 1073741823
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the guild
Success
Show child attributes
Array of role IDs the member has
250ISO8601 timestamp of when the user joined the guild
Whether the member is muted in voice channels
Whether the member is deafened in voice channels
The nickname of the member in this guild
The hash of the member guild-specific avatar
The hash of the member guild-specific banner
The accent colour of the member guild profile as an integer
0 <= x <= 2147483647ISO8601 timestamp until which the member is timed out
Member profile flags
0 <= x <= 2147483647curl --request GET \
--url https://api.fluxer.app/v1/guilds/{guild_id}/members/@me \
--header 'Authorization: <api-key>'{
"user": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"global_name": "<string>",
"avatar": "<string>",
"avatar_color": 1073741823,
"flags": 1073741823,
"bot": true,
"system": true
},
"roles": [
"<string>"
],
"joined_at": "2023-11-07T05:31:56Z",
"mute": true,
"deaf": true,
"nick": "<string>",
"avatar": "<string>",
"banner": "<string>",
"accent_color": 1073741823,
"communication_disabled_until": "2023-11-07T05:31:56Z",
"profile_flags": 1073741823
}