Delete API keys of multiple users
Delete or invalidate the API keys for multiple users.
DELETE /users/auth/keys/_all
curl \
-X DELETE https://{{hostname}}/api/v1/users/auth/keys/_all \
-d '{"user_api_keys":[{"user_id":"string","api_key_id":"string"}]}'
Request examples
{
"user_api_keys": [
{
"user_id": "string",
"api_key_id": "string"
}
]
}
Response examples (200)
{}