Skip to content

List Observables#

List observables of an Alerts.

Query#

POST /api/v0/query?name

Request Body Example#

List last 15 added observables:

{
  "query": [
    {
      "_name": "getAlert",
      "idOrName": "{id}"
    },
    {
      "_name": "observables"
    },
    {
      "_name": "sort",
      "_fields": [
        {
          "startDate": "desc"
        }
      ]
    },
    {
      "_name": "page",
      "from": 0,
      "to": 15,
      "extraData": [
        "seen"
      ]
    }
  ]
}

With:

  • id: id of the Alert

Response#

Status codes#

  • 200: if query is run successfully
  • 401: Authentication error

ResponseBody Example#

[
  ...
  {
    "_id": "~11111462234",
    "id": "~11111462234",
    "_type": "Observable",
    "_createdBy": "[email protected]",
    "_createdAt": 1629309258431,
    "dataType": "other",
    "data": "1.2.3.4",
    "startDate": 1629309258431,
    "tlp": 0,
    "ioc": false,
    "sighted": false,
    "reports": {},
    "stats": {}
  }
  ...
]

Last update: September 20, 2021 14:43:00