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

JSON request body containing password

The body is of type object.

Response

200
application/json

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

The response is of type object.