ttl #
Returns the remaining time to live of a key, in seconds.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_ttl/<_id>
Method: GET
Other protocols #
{
"controller": "ms",
"action": "ttl",
"_id": "<key>"
}
Arguments #
_id
: key identifier
Response #
Returns the remaining key TTL, in seconds, or a negative value if the key does not exist or if it is persistent.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "ttl",
"collection": null,
"index": null,
"result": 76
}
Edit this page on Github(opens new window)