Template
Retrieve template version settings.
Query parameters
siteIdinteger · int32Optional
The Site ID for which to retrieve the template version settings. (optional)
Responses
200
OK
application/json; api-version=1.0
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
get
GET /api/TemplateVersionSettings HTTP/1.1
Host:
Accept: */*
{
"siteId": 1,
"tags": [
{
"id": 1,
"name": "text"
}
]
}
Modify template version settings tags.
Path parameters
idinteger · int32Required
The ID of the application settings tag to modify.
Query parameters
siteIdinteger · int32Optional
The Site ID for which to modify the template version settings tags (optional).
Body
Update the Template Version Settings Tags
namestring | nullableRequired
The name of the template version settings tags to be modified.
Responses
204
No Content
401
Unauthorized
application/json; api-version=1.0
404
Not Found
application/json; api-version=1.0
put
PUT /api/TemplateVersionSettings/Tags/{id} HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 15
{
"name": "text"
}
No content
Last updated
Was this helpful?