hget #
Returns the field's value of a hash.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_hget/<_id>/<field>
Method: GET
Other protocols #
{
"controller": "ms",
"action": "hget",
"_id": "<key>",
"field": "field name"
}
Arguments #
_id
: hash key identifierfield
: field name to retrieve
Response #
Returns the field's value.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "hget",
"collection": null,
"index": null,
"result": "field value"
}
Edit this page on Github(opens new window)