PUT
/
servers
curl --request PUT \
  --url https://api.vaultcord.com/servers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "google play",
  "botId": 2475,
  "serverId": "1218273540147646535",
  "roleId": "1218273540147646535",
  "pic": "https://cdn.vaultcord.com/logo.png",
  "url": "mylink"
}'
{
  "success": true,
  "message": "Successfully created server!",
  "serverId": 5180
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
server JSON to be created
name
string

Display name of server

Example:

"google play"

botId
integer

Custom bot ID from /bots endpoint

Example:

2475

serverId
string

Discord snowflake ID for the guild.

Example:

"1218273540147646535"

roleId
string

(Optional) Discord snowflake ID for the verified role.

Example:

"1218273540147646535"

pic
string

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

Example:

"https://cdn.vaultcord.com/logo.png"

url
string

URL for the server verification page

Example:

"mylink"

Response

200
application/json
SUCCESS_MESSAGE
success
boolean
Example:

true

message
string
Example:

"Successfully created server!"

serverId
integer
Example:

5180