PUT
/
blocklist
curl --request PUT \
  --url https://api.vaultcord.com/blocklist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "userid": "1215624435520897090",
  "ip": "1.1.1.1",
  "fingerprint": "782c2b71aef697c83284ef3ab4cb593c",
  "region": "ENG",
  "country": "DZ",
  "asn": 13335
}'
{
  "success": true,
  "message": "Added to blocklist."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
blocklist JSON to be added
userid
string

Discord snowflake ID for the member/user.

Example:

"1215624435520897090"

ip
string

IP address to blocklist

Example:

"1.1.1.1"

fingerprint
string

Browser fingerprint to blocklist

Example:

"782c2b71aef697c83284ef3ab4cb593c"

region
string

Region code from ip-api.com to blocklist

Example:

"ENG"

country
string

Country code from ip-api.com to blocklist

Example:

"DZ"

asn
integer

ASN number from ip-api.com to blocklist

Example:

13335

Response

200
application/json
SUCCESS_MESSAGE
success
boolean
Example:

true

message
string
Example:

"Added to blocklist."