Core
API v2.x
2

getbit #

Returns the bit value at the provided offset, in the string value stored in a key.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_getbit/<_id>?offset=<offset>
Method: GET

Other protocols #

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

Arguments #

  • _id: key containing the geopoints to fetch
  • offset: bit offset to return

Response #

Returns the bit at the provided offset. The returned value can be either 0 or 1.

Copied to clipboard!
{
  "requestId": "<unique request identifier>",
  "status": 200,
  "error": null,
  "controller": "ms",
  "action": "getbit",
  "collection": null,
  "index": null,
  "result": 0
}