deleteApiKey #
Deletes a user API key.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/users/<userId>/api-keys/<apiKeyId>[?refresh=wait_for]
Method: DELETEThe API key can also be targeted by its clear-text key or its fingerprint instead of its _id, using query string parameters:
URL: http://kuzzle:7512/users/<userId>/api-keys[?key=<key>&refresh=wait_for]
Method: DELETEURL: http://kuzzle:7512/users/<userId>/api-keys[?fingerprint=<fingerprint>&refresh=wait_for]
Method: DELETEOther protocols #
{
"controller": "security",
"action": "deleteApiKey",
"userId": "mWakSm4BWtbu6xy6NY8K",
"_id": "api-key-id"
}Arguments #
userId: user kuid
Exactly one of the following must be provided to identify the API key to delete:
_id: API key IDkey: the clear-text API keyfingerprint: the API key fingerprint (SHA-256 hash of the clear-text key)
Optional: #
refresh: if set towait_for, Kuzzle will not respond until the API key deletion is indexed (default:"wait_for")
Response #
Returns the deleted API key ID.
{
"status": 200,
"error": null,
"result": {
"_id": "api-key-id",
}
"action": "deleteApiKey",
"controller": "security",
"requestId": "<unique request identifier>"
}