curl --request GET \
--url https://{FUSION_HOST.com}/api/templating/settings/_schema
{
"type": "object",
"title": "General settings of the template service.",
"description": "Stores common application configuration of templating service.",
"properties": {
"id": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
},
"app": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
},
"hierarchyFields": {
"type": "array",
"title": "Hierarchy fields",
"description": "<string>",
"items": {
"type": "object",
"properties": {
"field": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
}
},
"separator": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
}
}
}
},
"category": "<string>",
"categoryPriority": "<string>",
"unsafe": true
}
Retrieve the configuration schema for settings.
curl --request GET \
--url https://{FUSION_HOST.com}/api/templating/settings/_schema
{
"type": "object",
"title": "General settings of the template service.",
"description": "Stores common application configuration of templating service.",
"properties": {
"id": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
},
"app": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
},
"hierarchyFields": {
"type": "array",
"title": "Hierarchy fields",
"description": "<string>",
"items": {
"type": "object",
"properties": {
"field": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
}
},
"separator": {
"type": "<string>",
"title": "<string>",
"description": "<string>"
}
}
}
},
"category": "<string>",
"categoryPriority": "<string>",
"unsafe": true
}
OK
The response is of type object
.
Was this page helpful?