Get commentedit

Gets the specified comment.

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/cases/<case ID>/comments/<comment ID>

URL partsedit

The URL must include:

  • the case ID of the comment’s associated case (call Find cases to retrieve case IDs).
  • the comment ID of the comment you are retrieving (call Get all case comments to retrieve comment IDs).

Example requestedit

Retrieves comment ID 71ec1870-725b-11ea-a0b2-c51ea50a58e2 from case ID a18b38a0-71b0-11ea-a0b2-c51ea50a58e2:

GET api/cases/a18b38a0-71b0-11ea-a0b2-c51ea50a58e2/comments/71ec1870-725b-11ea-a0b2-c51ea50a58e2

Response codeedit

200
Indicates a successful call.

Response payloadedit

The requested comment JSON object.

Example responseedit

{
  "id": "71ec1870-725b-11ea-a0b2-c51ea50a58e2",
  "version": "WzEyOCwxXQ==",
  "type": "user",
  "comment": "Start operation bubblegum immediately! And chew fast!",
  "created_at": "2020-03-30T07:52:46.702Z",
  "created_by": {
    "email": "classified@hms.oo.gov.uk",
    "full_name": "Classified",
    "username": "M"
  },
  "owner": "securitySolution",
  "pushed_at": null,
  "pushed_by": null,
  "updated_at": null,
  "updated_by": null
}