v1

latestOpenAPI 3.0.02026-07-26441564.4 KB
Servers

Update server settings

patch/servers/{id}

Path parameters

idinteger required

ID of the resource

Request body

namestring

Name of the server.

botIdinteger

Custom bot ID from /bots endpoint

guildidstring

Discord snowflake ID for the guild.

roleidstring

Discord snowflake ID for the verified role.

channelidstring

Discord snowflake ID for the logs channel.

picstring

Image link, only https://imgur.com and https://cdn.vaultcord.com links accepted

font'Poppins' | 'Minecraftia' | 'Comfortaa' | 'Lexend' | 'Inter' | 'Montserrat' | 'Kanit' | 'Open Sans' | 'Fira Code' | 'Grandstander' | 'Gluten' | 'Unbounded' | 'Mali' | 'Sansita Swashed'

Font for the text on verification page

backgroundColorstring

CSS "background" element. Displayed if no banner set

textColorstring

Color of all text displayed on verification page

descriptionstring

Bio text shown on verification page

githubUrlstring

GitHub social media link

twitterUrlstring

Twitter (X) social media link

websiteUrlstring

Website social media link

youtubeUrlstring

YouTube social media link

bannerstring

Banner image on the verification page. Must be https://imgur.com

cursorstring

Custom cursor on the verification page. Must be https://imgur.com

urlstring

URL for the server verification page

minAgeinteger

Newest Discord account age allowed, in days

redirectUrlstring

Send users to a custom URL after verification

ipLogginginteger

View unhashed IP address, 0 = OFF, 1 = ON

vpncheckinteger

Block VPNs from verification, 0 = OFF, 1 = ON

mobilecheckinteger

Block mobile networks from verification, 0 = OFF, 1 = ON

altcheckinteger

Block alternate accounts from verification, 0 = OFF, 1 = ON

altbaninteger

Ban alt accounts automatically, 0 = OFF, 1 = ON

viewAuthedAppsinteger

Collect social connections from member profiles, 0 = OFF, 1 = ON

viewGuildsinteger

Collect servers member is in, 0 = OFF, 1 = ON

viewEmailsinteger

Collect member email address, 0 = OFF, 1 = ON

blacklistinteger

Check blocklist on verification, 0 = OFF, 1 = ON

whitelistinteger

Only accept allowlisted members, 0 = OFF, 1 = ON

captchainteger

Require captcha on verification, 0 = OFF, 1 = ON

closeVerifyinteger

Close verification page automatically after verification, 0 = OFF, 1 = ON

Example request

{
  "name": "google play",
  "botId": 5180,
  "guildid": "1218273540147646535",
  "roleid": "1225834185885876296",
  "channelid": "1260566188124274721",
  "pic": "https://cdn.vaultcord.com/logo.png",
  "font": "Minecraftia",
  "backgroundColor": "#151515",
  "textColor": "#FFF",
  "description": "Please verify to see the rest of our server",
  "githubUrl": "https://github.com/VaultCord",
  "twitterUrl": "https://twitter.com/VaultCord",
  "websiteUrl": "https://vaultcord.com",
  "youtubeUrl": "https://youtube.com/@VaultCord",
  "banner": "https://i.imgur.com/LpttueJ.gif",
  "cursor": "https://i.imgur.com/VdVvG03.png",
  "url": "mylink",
  "minAge": 7
}

Response

Successfully updated VaultCord server settings

successboolean
messagestring
serverIdinteger

Example response

{
  "success": true,
  "message": "Successfully saved settings!",
  "serverId": 5180
}