v1

latestOpenAPI 3.0.12026-07-24110189356.6 KB
index

Gets the partitions that match the query

Queries the index layer for the partitions that match the query. Returns each partition that matches the query, including each partition's data handle, which you use with the blob API to retrieve data for each partition.

get/layers/{layerID}

Path parameters

layerIDstring required

The ID of the index layer you want to query.

Query parameters

querystring required

An RSQL query to use to retrieve partitions that match the query. For more information, see Get Index Data from an Index Layer. The query must use the indexing attributes defined in the index layer.

partstring

Indicates which part of the layer shall be queried.

Response

OK - Query executed successfully

dataMapStringObject[]

Example response

{
  "data": [
    {
      "id": "7a320ce9-e4d0-4d74-9c7a-19810f99a3a1",
      "size": 100,
      "checksum": "checksum",
      "metadata": "{\"ingestionTime\": \"1532018660873\"}",
      "timestamp": 1543351987660,
      "crc": "crc",
      "hour": 0,
      "tile": 377782527,
      "containsProbe": true,
      "eventType": "vss"
    }
  ]
}