Core
API v2.x
2

list #

Lists subscriptions on all indexes and all collections.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_listSubscriptions
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "realtime",
  "action": "list"
}

Response #

Returns an object with the following structure:

Copied to clipboard!
{
  "<index>": {
    "<collection>": {
      "<subscription identifier": <number of active connections>
    }
  }
}

Example #

Copied to clipboard!
{
  "error": null,
  "status": 200,
  "index": null,
  "collection": null,
  "controller": "realtime",
  "action": "list",
  "requestId": "<unique request identifier>",
  "result": {
    "<index>": {
      "<collection>": {
        "afcd909773f197ab859447594bfbd154": 12,
        "4adbc1948ac4dc84ac89d14b488bcad1": 4
      },
      "<anotherCollection>": {
        "bcd4ab54cdb4ad5b464ba4cd4564dc46": 1
      }
    },
    "<anotherIndex>": {
      "<yetAnotherCollection>": {
        "5fad4034eed4dc84ac40dc4b48dcdad23": 35
      }
    }
  }
}