Delete API keys of multiple usersedit

Delete or invalidate the API keys for multiple users.

Requestedit

DELETE /api/v1/users/auth/keys/_all

Request bodyedit

(DeleteUsersApiKeysRequest) (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/_all \
-H "Authorization: ApiKey $ECE_API_KEY" \
-H 'Content-Type: application/json' \
-d '
{
   "user_api_keys" : [
      {
         "api_key_id" : "string",
         "user_id" : "string"
      }
   ]
}
'