Skip to main content
GET
/
experience-manager
/
search
Get search results for rules
import requests

url = "https://{FUSION HOST}/api/experience-manager/search"

headers = {"Authorization": "Basic <encoded-value>"}

response = requests.get(url, headers=headers)

print(response.text)
{}

Documentation Index

Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

context
string
required

Application context in which the search is performed.

docType
string

Specifies the document type to filter search results.

q
string
required

Search query string used to find matching rules.

rows
integer<int32>

The number of search results to return.

staging
boolean
required

Indicates whether to search within the staging environment.

type
string

Specifies the rule type to filter search results.

Response

Search results retrieved successfully.

The response is of type object.