Query parameters
-
documentIds
array[string] | string -
savedObjectIds
array[string] | string -
page
string | null -
perPage
string | null -
search
string | null -
sortField
string | null -
sortOrder
string | null -
filter
string | null -
createdByFilter
string | null -
associatedFilter
string Filter notes based on their association with a document or saved object.
Values are
all
,document_only
,saved_object_only
,document_and_saved_object
, ororphan
.
GET
/api/note
curl \
--request GET https://<KIBANA_URL>/api/note \
--header "Authorization: $API_KEY"
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
}