A newer version is available. For the latest information, see the
current release documentation.
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. -
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/_all \ -u $CLOUD_USER:$CLOUD_KEY \ -H 'Content-Type: application/json' \ -d ' { "user_api_keys" : [ { "api_key_id" : "string", "user_id" : "string" } ] } '