Delete or invalidate the API keys for multiple users.
DELETE
/users/auth/keys/_all
curl \
--request DELETE 'https://{{hostname}}/api/v1/users/auth/keys/_all' \
--user "username:password" \
--header "Content-Type: application/json" \
--data '{
"user_api_keys": [
{
"user_id": "string",
"api_key_id": "string"
}
]
}'