Core
API v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

rpop #

Removes the last element of a list and returns it.

[Redis documentation]


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/ms/_rpop/<_id>
Method: POST

Other protocols #

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

Argument #

  • _id: list key identifier

Response #

Returns the removed element.

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