Link opened

Learn how to check if a user has opened a specific link.

This expression checks whether a user has clicked on a specific link based on Link opened events.

Syntax

The basic syntax for this expression is:

user has opened link /*<url>*/
Try in Playground

You can optionally include the article for better readability:

user has opened a link /*<url>*/
Try in Playground

The negation of the expression can be expressed as:

user has not opened link /*<url>*/
Try in Playground

You can refine the expression with quantifiers, and time windows:

user has opened link /*<url>*/ /*<quantifier>*/ /*<window>*/
Try in Playground

Parameters

These are the supported parameters:

Event properties

This event does not have additional properties.

Examples

You can check whether a user has opened a specific link:

user has opened a link "https://croct.com"
Try in Playground

Or check if they have not opened a specific link:

user has not opened a link "https://croct.com"
Try in Playground

You can also check how many times a link was opened:

user has opened a link "https://croct.com" exactly 3 times
Try in Playground

You can even filter by time, such as checking if the link was opened yesterday:

user has opened a link "https://croct.com" yesterday
Try in Playground

Combine counts and time windows in one expression:

user has opened a link "https://croct.com" exactly 2 times today
Try in Playground