Get list containeredit

Retrieves a list container using its id field.

Console supports only Elasticsearch APIs. Console doesn’t allow interactions with Kibana APIs. You must use curl or another HTTP tool instead. For more information, refer to Run Elasticsearch API requests.

Request URLedit

GET <kibana host>:<port>/api/lists

URL query parametersedit

The URL query must include the list container’s id:

id - GET /api/lists?id=<id>

Example requestedit

Retrieves the list container with a id of internal-ip-excludes:

GET api/lists?id=internal-ip-excludes

Response codeedit

200
Indicates a successful call.

Response payloadedit

{
  "id": "internal-ip-excludes",
  "created_at": "2020-07-07T04:09:55.028Z",
  "created_by": "Threat Hunter",
  "description": "Contains list items that exclude internal IP addresses from detection rules.",
  "name": "Exclude internal IP addresses",
  "tie_breaker_id": "b123ab0e-d7c0-4ee5-9630-63a38641aa0c",
  "type": "ip",
  "updated_at": "2020-07-07T04:09:55.028Z",
  "updated_by": "Threat Hunter"
}