Delete API keysedit

Delete or invalidate API keys.

Requestedit

DELETE /api/v1/users/auth/keys

Request bodyedit

(DeleteApiKeysRequest) (required) The request to delete API keys

Responsesedit

200

(EmptyResponse) The API keys are deleted.

449

(BasicFailedReply) Elevated permissions are required. (code: root.unauthorized.rbac.elevated_permissions_required)

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request exampleedit

curl -XDELETE {{hostname}}/api/v1/users/auth/keys \
-u $CLOUD_USER:$CLOUD_KEY \
-H 'Content-Type: application/json' \
-d '
{
   "keys" : [
      "string"
   ]
}
'