IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Add a note to an existing Timeline
editAdd a note to an existing Timeline
editAdd a note to an existing Timeline or Timeline event.
The Kibana Console supports only Elasticsearch APIs. You cannot interact with the Kibana APIs with the Console and must use curl
or another HTTP tool instead. For more information, refer to Console.
Request URL
editPATCH <kibana host>:<port>/api/note
Request body
editA JSON object defining the note content to be added.
Name | Type | Description | Required |
---|---|---|---|
|
A note added to a specific Timeline event
|
Yes |
Example requests
editExample 1
Add a note to an existing Timeline event:
PATCH api/note { "note":{ "eventId":"dDaPFXkB-qWtr5vqlN9o", "note":"My note", "timelineId":"b2c103b0-a79d-11eb-9dce-0f3114099868" } }
Example 2
Add a note to an existing Timeline:
PATCH api/note { "note":{ "note":"My note", "timelineId":"b2c103b0-a79d-11eb-9dce-0f3114099868" } }