PUT
/
settings
/
{id}
Update settings for an app
curl --request PUT \
  --url https://{FUSION_HOST.com}/api/templating/settings/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "app": "your-app-name",
  "entityDirty": true,
  "hierarchyFields": [
    {
      "field": "product_description",
      "fieldName": "product_description",
      "separator": ";"
    }
  ],
  "id": "<string>"
}'
{
  "app": "your-app-name",
  "hierarchyFields": [
    {
      "field": "product_description",
      "separator": ";"
    }
  ],
  "id": "your-app-name:version"
}

Path Parameters

id
string
required

The version of the application that is sending the results. Because the application configuration can be changed, the version used for the query is helpful information if troubleshooting or investigation is necessary. The format is: "your-app-name:version".

Example:

"your-app-name:version"

Query Parameters

context
string

The context parameter retrieves templates for the specified application. The parameter format is app:your-app-name. Only the first application listed in the context is displayed even if a comma-delimited list is entered in the parameter.

Example:

"your-app-name"

Body

application/json

Response

200
application/json

OK

The response is of type object.