Namespace Operations

A namespace represents a named collection of objects in the ScaleOut distributed data store. The REST API supports listing all namespaces, all keys in a namespace, and clearing all objects from a namespace.

Listing Namespaces

Request

GET /data/

A GET operation on the service’s lowest-level "data" path off of its root will list all registered namespaces in the SOSS in-memory data grid.

Response

Example Response. 

[
  {
    "name":"MyNamespace",
    "id":12345678
  },
  {
    "name":"MyOtherNamespace",
    "id":87654321
  }
]

Response Status Codes
200
Success. The message body will contain the registered namespaces.