Skip to main content
POST
/
query
/
{id}
/
Get query results
import requests

url = "https://{FUSION HOST}/api/query/{id}/"

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

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

print(response.json())
{
  "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 profile ID.

Response

OK

Query response object.

contentType
string
mediaType
object
contentCharset
string