post

Compare

lock
{{protocol}}://{{url}}/{{version}}/templates/:templateKey/compare/:itemKey

Apply a template to an item.

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 comparing a template :

{
    "types": ["Task"],
    "exclude": false
}

To include all types except for Task when comparing 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": [
    "Comment"
  ],
  "exclude": false
}