Core
API v2.x
2

hgetall #

Returns all fields and values of a hash.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_hgetall/<_id>
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "ms",
  "action": "hgetall",
  "_id": "<key>"
}

Arguments #

  • _id: hash key identifier

Response #

Returns the requested hash content as a field: value object.

Copied to clipboard!
{
  "requestId": "<unique request identifier>",
  "status": 200,
  "error": null,
  "controller": "ms",
  "action": "hgetall",
  "collection": null,
  "index": null,
  "result": {
    "field1": "value",
    "field2": "value",
    "...": "..."
  }
}