List all guilds a user is a member of. Shows roles and join dates. Requires USER_LIST_GUILDS permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/users/list-guilds \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"before": "<string>",
"after": "<string>",
"limit": 100,
"with_counts": true
}
'{
"guilds": [
{
"id": "<string>",
"name": "<string>",
"features": [
"<string>"
],
"owner_id": "<string>",
"icon": "<string>",
"banner": "<string>",
"member_count": 1073741823
}
]
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
200Show child attributes
curl --request POST \
--url https://api.fluxer.app/v1/admin/users/list-guilds \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"before": "<string>",
"after": "<string>",
"limit": 100,
"with_counts": true
}
'{
"guilds": [
{
"id": "<string>",
"name": "<string>",
"features": [
"<string>"
],
"owner_id": "<string>",
"icon": "<string>",
"banner": "<string>",
"member_count": 1073741823
}
]
}