Using delays in order to cancel a trigger in case of a mistake

Hello everyone !

I want the opportunity to cancel the trigger of an automation if I make a mistake for example.

Here is an example :

The creation of an activity in my agenda will trigger the sending of an email. If there is a mistake in the activity log (wrong date for example), I want the possibility to erase the activity for a certain amount of time and cancel the trigger (the sending of an email).

I tried setting up a “sleep” module right after a trigger and then I created a filter to check if the activity still exists. The outcome I want is the possibility to erase the activity during the sleep period so it stops the rest of the scenario thanks to the filter (activity exists) placed after the sleep module.

Unfortunately, it does not work… Once I create an activity and I deleted it during the “sleep period”, Make thinks that the activity still exists and the email was sent. Basically, the filter is not working.

Do you know how I could solve this without working with data store ?

Thanks for your help !

Best,


the data is called only when the module that requests the data is triggered.

If you delete the data while the scenario is running, it will have no impact on the scenario execution (by design, as this could cause other cascade problems)

you can think of it like, when your module requests the data, " :make:make" makes a copy of that data, and uses the copy.

you could re-request the same data after the sleep to see if it still exists. and only continue scenario if true.

1 Like

Hey @Guillaume,
You can add another “get activity” action after sleep and see if that activity exists, if it doesn’t exist it means that was deleted.
image

2 Likes

Too bad, I really thought that you got the solution but it is still not working :frowning:

I placed an “Get an activity” right after the sleep module and the module finds the activity ID even though it has been deleted in the meantime.

Thanks anyway for your help.


can you show the output data of the 3rd module for me.
image
be sure to redact sensitive data in the image you share here.

Sure there you go :smiley:
INPUT BUNDLE
“id”:1945

OUTPUT BUNDLE
[
{
“id”: 1945,
“company_id”: 10741125,
“user_id”: 14043597,
“done”: false,
“type”: “meeting”,
“reference_type”: null,
“reference_id”: null,
“conference_meeting_client”: null,
“conference_meeting_url”: null,
“due_date”: “2022-07-11T22:00:00.000Z”,
“due_time”: “09:45”,
“duration”: “”,
“busy_flag”: null,
“add_time”: “2022-07-12T09:02:49.000Z”,
“marked_as_done_time”: “”,
“last_notification_time”: null,
“last_notification_user_id”: null,
“notification_language_id”: null,
“subject”: “bb”,
“public_description”: “”,
“calendar_sync_include_context”: null,
“location”: null,
“org_id”: null,
“person_id”: 605,
“deal_id”: 184,
“lead_id”: null,
“active_flag”: true,
“update_time”: “2022-07-12T09:02:49.000Z”,
“update_user_id”: null,
“source_timezone”: null,
“rec_rule”: null,
“rec_rule_extension”: null,
“rec_master_activity_id”: null,
“conference_meeting_id”: null,
“note”: null,
“created_by_user_id”: 14043597,
“location_subpremise”: null,
“location_street_number”: null,
“location_route”: null,
“location_sublocality”: null,
“location_locality”: null,
“location_admin_area_level_1”: null,
“location_admin_area_level_2”: null,
“location_country”: null,
“location_postal_code”: null,
“location_formatted_address”: null,
“attendees”: null,
“participants”: [
{
“person_id”: 605,
“primary_flag”: true
}
],
“series”: null,
“is_recurring”: null,
“org_name”: null,
“person_name”: “Pierre Client”,
“deal_title”: “Rue des champs 5”,
“lead_title”: null,
“owner_name”: “Alexandre”,
“person_dropbox_bcc”: “waw@pipedrivemail.com”,
“deal_dropbox_bcc”: “waw+deal184@pipedrivemail.com”,
“assigned_to_user_id”: 14043597,
“type_name”: “1er Rendez-vous”,
“lead”: null
}
]

Alrighty, I did some tests in pipedrive, i think there is an unseen “recyclebin” that registers to the API still

This variable for an Activity
image

This variable for a deleted activity
image

So you filter between your 3rd and 4th modules for the active flag.

I tested under your described conditions i think this should work @Guillaume
I would still filter for activity existing as well, because i dont know how long pipedrive holds onto deleted data.

1 Like

It’s (finally) working ! Thank you very much for your help :slight_smile:

1 Like