post
Sync
{{protocol}}://{{url}}/{{version}}/templates/:templateKey/sync/:itemKey
Apply a template to an item.
Authenticated. Permissions:
a
on the item on which the template is applied.
By default, all item's type in the types
parameter will be included. To exclude elements, you can use the exclude
boolean parameter.
Examples :
To only include Task when syncing a template :
{
"types": ["Task"],
"exclude": false
}
To include all types except for Task when syncing a template :
{
"types": ["Task"],
"exclude": true
}
Authentication
Authentication inherited from the collection: Bearer .Parameters
Name | Type | Value |
---|---|---|
templateKey | path | 277056 |
itemKey | path | 278053 |
Body
{
"properties": [
"data.name",
"data.status"
],
"types": [
"Task"
],
"exclude": false,
"removeUntracked": true,
"revertModified": true,
"createMissing": true
}
Compare
Previous