POST
/
query-pipelines
/
{id}
/
collections
/
{collection}
/
{handler}
Get query results
curl --request POST \
  --url https://{FUSION HOST}/api/query-pipelines/{id}/collections/{collection}/{handler} \
  --header 'Authorization: Basic <encoded-value>'
{
  "contentType": "<string>",
  "mediaType": {
    "type": "<string>",
    "subtype": "<string>",
    "parameters": {},
    "wildcardType": true,
    "wildcardSubtype": true
  },
  "contentCharset": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The query pipeline ID.

collection
string
required

The data collection to query.

handler
string
required

The Solr search handler to use for this query.

Query Parameters

q
string
required

The query terms, using the Solr query language.

params
object

Additional Solr query parameters.

Response

200
application/*

OK

Query response object.