Modify Custom Field values

Save modification date of Custom Field A to Custom Field B

👍

Please consider using the following Automation Rule instead of this webhook.

This webhook saves timestamp of last modification date of one custom field to another custom field.

1047

Prerequisites:

  1. Modify settings of process of project My Project.
  2. Add Custom Field of any supported type (Text, Drop Down List, Number,Checkbox) with name My Field and custom field of type Date, System with name My Field Last Modification to User Story entity.
983

Add the webhook:

https://your-targetprocess-address/api/v1/UserStories?token=[your token]
Create, Update User Story
ProjectName == "My Project" and MyField != Previous.MyField
{
 "Id" : {{ID}},
 "CustomFields" : [{
   "Name" : "My Field Last Modification",
   "Value" : "{{Now | Date:'yyyy-MM-dd'}}"
 }]
}

In the configuration, you're welcome to replace sample names of custom fields, project, entity type to the ones used in your account.

If your actual custom field names contain spaces, you must omit them within Filters and Template > CustomFields > Value sections. Spaces in the custom field name in Template > CustomFields > Name section should be preserved.