SkyHelperSkyHelper Docs

Update guild settings

Updates guild-specific bot settings like prefix, language, and beta features

PATCH
/guilds/{guild}
AuthorizationBearer <token>

Enter your Discord OAuth2 access token

In: header

Path Parameters

guildstring

Discord guild ID

Match^\d{17,19}$
id?string
name?string
icon?string | null
prefix?string
announcement_channel?string
beta?boolean
language?string
Value in"en-US" | "hi" | "ru" | "ja" | "es-ES"
enabledFeatures?array<string>

Response Body

curl -X PATCH "https://api.skyhelper.xyz/guilds/string" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "id": "string",
  "name": "string",
  "icon": "string",
  "prefix": "string",
  "announcement_channel": "string",
  "beta": true,
  "language": "en-US",
  "enabledFeatures": [
    "reminders"
  ]
}
Empty
Empty

Last updated on