Get conversations
Get a list of all conversations for the current user. This endpoint allows users to search, filter, sort, and paginate through their conversations.
Query parameters
-
A list of fields to include in the response. If omitted, all fields are returned.
-
A search query to filter the conversations. Can match against titles, messages, or other conversation attributes.
-
The field by which to sort the results. Valid fields are
created_at
,title
, andupdated_at
.Values are
created_at
,title
, orupdated_at
. -
The order in which to sort the results. Can be either
asc
for ascending ordesc
for descending.Values are
asc
ordesc
. -
The page number of the results to retrieve. Default is 1.
Minimum value is
1
. Default value is1
. -
The number of conversations to return per page. Default is 20.
Minimum value is
0
. Default value is20
.
curl \
--request GET 'https://<KIBANA_URL>/api/security_ai_assistant/current_user/conversations/_find' \
--header "Authorization: $API_KEY"