I know there is no trigger for this but does anyone know of a workaround?

I know there is no trigger for this but does anyone know of a workaround?
Hi @DLM1166,
A workaround could be to use a recurrence trigger and check if the contact has been created recently (using the createdDateTime property of a contact item). That check can be done in a Filter Array action.
Below is an example
The filter array is using the expression below, which you should be able to add in advanced mode.
@greater(item()?['createdDateTime'], addDays(utcNow(), -7))