Get notes Beta

GET /api/note

Get all notes for a given document.

Query parameters

Responses

GET /api/note
curl \
 -X GET https://localhost:5601/api/note
Response examples (200)
{
  "notes": [
    {
      "created": 42.0,
      "createdBy": "string",
      "eventId": "string",
      "note": "string",
      "timelineId": "string",
      "updated": 42.0,
      "updatedBy": "string",
      "noteId": "string",
      "version": "string"
    }
  ],
  "totalCount": 42.0
}
{}