deleteApiKey #
Deletes an API key.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/api-keys/<apiKeyId>[?refresh=wait_for]
Method: DELETE
Other protocols #
{
"controller": "auth",
"action": "deleteApiKey",
"_id": "api-key-id"
}
Arguments #
_id
: API key ID
Optional: #
refresh
: if set towait_for
, Kuzzle will not respond until the API key deletion is indexed
Response #
Returns the deleted API key ID.
{
"status": 200,
"error": null,
"result": {
"_id": "api-key-id",
}
"action": "deleteApiKey",
"controller": "auth",
"requestId": "<unique request identifier>"
}
Edit this page on Github(opens new window)