Skip to main content
PUT
/
servers
/
{serverId}
/
passwords
cURL
curl --request PUT \
  --url https://api.vaultcord.com/servers/{serverId}/passwords \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "Q1mo99_+2=h@7fQg%YY}YtFUJ*"
}'
{
  "success": true,
  "message": "Added password to verification."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

serverId
integer
required

ID of the VaultCord server

Body

application/json

The new password you would like added to your verify page (send this request several times to add many passwords. It could be used to create "password invite codes" you sell through a monetization platform like Patreon)

password
string

A verification password. There are no restrictions, it can be all numbers or text. Make it as long or as short as you prefer (if you have 500+ members, password should be 13+ bytes long for bruteforce protection)

Example:

"Q1mo99_+2=h@7fQg%YY}YtFUJ*"

Response

Password has been added. You can add unlimited passwords to your server's verification.

success
boolean
Example:

true

message
string
Example:

"Added password to verification."