curl --request POST \
--url https://api.example.com/api/search/action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"llm": "<string>",
"chat_id": "<string>",
"entry_id": "<string>",
"use_case_id": "<string>",
"thread_id": "<string>",
"knowledge_asset_ids": [
"<string>"
],
"quick_action_id": "<string>",
"prompt_task": "<string>",
"locale": "en",
"is_initial_message": true,
"user_timezone": "<string>",
"include_previous_entry_chunks": false,
"enable_filtering_in_search_pipeline": true,
"enable_splitting_in_search_pipeline": true,
"enable_reformulation_in_search_pipeline": true,
"targeted_web_search_urls": [
"<string>"
],
"extracted_urls": [
"<string>"
],
"top_n": 123,
"guided_search_fields": "<string>",
"file_contents": "<string>",
"prompt_output_format": "<string>",
"prompt_example_section": "<string>"
}
'