POST
/
api
/
keys
/
bulk-revoke
curl --request POST \
  --url https://api.avm.codes/api/keys/bulk-revoke \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "idKeys": [
    1,
    2,
    3
  ]
}'
{
  "success": true,
  "revokeCount": 3
}

Authorizations

Authorization
string
header
required

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

Body

application/json
idKeys
number[]
required
Example:
[1, 2, 3]

Response

200 - application/json
A successful response of revoking the API key.
success
boolean
required
Example:

true

revokeCount
number
required
Example:

3