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.

Request exampleedit

curl -XDELETE https://{{hostname}}/api/v1/users/auth/keys \
-H "Authorization: ApiKey $ECE_API_KEY" \
-H 'Content-Type: application/json' \
-d '
{
   "keys" : [
      "string"
   ]
}
'