get #
Gets the value of a key.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/<_id>
Method: GET
Other protocols #
{
"controller": "ms",
"action": "get",
"_id": "<key>"
}
Arguments #
_id
: key to fetch
Response #
Returns the queried key's value. If the key doesn't exist, get
returns null
.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "get",
"collection": null,
"index": null,
"result": "value"
}
Edit this page on Github(opens new window)