
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 09:17 AM
Hello!
We have CALL records that get created from emails, I need new call records to be created for all types of emails, new, forward and reply.
New and forward seem to work fine, but a reply is always updating the existing record. Is there a workaround for this?
Thanks!
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
-
Team Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 09:26 AM
Go to the Inbound Actions, find the action that is getting triggered and examine the Actions tab after navigating inside.
Instead of current.update , try current.insert.
Please mark reply as Helpful/Correct, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 09:26 AM
Go to the Inbound Actions, find the action that is getting triggered and examine the Actions tab after navigating inside.
Instead of current.update , try current.insert.
Please mark reply as Helpful/Correct, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 11:57 AM
In the actions tab, I just wrote a script to do current.initialize() and current.insert() and it worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 09:27 AM
Modify or inactivate the inbound action that is looking for that keyword and updating.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 11:13 AM
it's just a regular reply type inbound action, it is not looking for any specific keyword. It's automatically updating a previous record that was either inserted using the new inbound action or the forward inbound action.