Core
API v2.x
2

incrby #

Increments the number stored at key by the provided integer value. If the key does not exist, it is set to 0 before performing the operation.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_incrby/<_id>
Method: POST
Body:
Copied to clipboard!
{
  "value": <increment integer value>
}

Other protocols #

Copied to clipboard!
{
  "controller": "ms",
  "action": "incrby",
  "_id": "<key>",
  "body": {
    "value": <increment integer value>
  }
}

Arguments #

  • _id: key identifier

Body properties #

  • value: the integer value to add to the key value

Response #

Returns the incremented key value.

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