Get all JSON schemas
import requests
url = "https://{FUSION HOST}/api/query-stages/schema"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Get all JSON schemas
Fetch the configuration schemas for all query pipeline stage types.
GET
/
query-stages
/
schema
Get all JSON schemas
import requests
url = "https://{FUSION HOST}/api/query-stages/schema"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Authorizations
Basic authAPI key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response
200 - application/json
OK
Represents a structured object type definition used in the Experience Manager.
Show child attributes
Show child attributes
Was this page helpful?
⌘I