Forcefully adds a user to a guild. Bypasses normal invite flow for administrative account recovery. Logged to audit log. Requires GUILD_FORCE_ADD_MEMBER permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/guilds/force-add-user \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"guild_id": "<string>"
}
'{}Documentation Index
Fetch the complete documentation index at: https://docs.fluxer.app/llms.txt
Use this file to discover all available pages before exploring further.
Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
Whether the operation succeeded
true curl --request POST \
--url https://api.fluxer.app/v1/admin/guilds/force-add-user \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"guild_id": "<string>"
}
'{}