A newer version is available. For the latest information, see the
current release documentation.
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. -
449
-
(
BasicFailedReply
) Elevated permissions are required. (code:root.unauthorized.rbac.elevated_permissions_required
)Headers
-
x-cloud-error-codes
(string
; allowed values: [root.unauthorized.rbac.elevated_permissions_required
]) - The error codes associated with the response
-
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 \ -H "Authorization: ApiKey $ECE_API_KEY" \ -H 'Content-Type: application/json' \ -d ' { "keys" : [ "string" ] } '