I am trying to create a trigger (Poll based) in Zapier app/integration which should run the zap when an existing item will be updated.
Now, as per the doc, if an item will contain id
and updated_at
key then it should work if same record will be updated with last modified timestamp field. A detailed question is already asked on StackOverflow with Zapier tag but I think community can help me more easily rather than SO.
I understand that Zapier deduper identify the changes by checking the difference in item’s id. Now what I want from trigger -
- It should run only when an existing record will be modified (modTime is a key which will be updated on each modification)
- It should not run if a new record will be created.
- It should show the id field value as original one for any action with which this trigger will be used.
- I can create new id on modification of any record like { id: rec.id + ':' + rec.modTime ... } but it does not work as per Point 3 because we are changing output fields
Am I missing something or is there any other way to do this ? Let me know if you have any other question in it.