Signed up

Learn how to check if a user has signed up.

This expression verifies whether the user has signed up based on Signed up events. Sign‑ups represent successful account creation.

Syntax

The basic syntax for this expression is:

user has signed up
Try in Playground

The negation of the expression can be expressed as:

user has not signed up
Try in Playground

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

user has signed up with /*<quantifier>*/ /*<window>*/
Try in Playground

Parameters

These are the supported parameters:

quantifier(optional)

A quantifier to specify how many times the sign up must have occurred.

window(optional)

The time window during which the sign up must have occurred.

Event properties

This event does not have any specific properties for filtering.

Examples

You can check whether a user has signed up:

user has signed up
Try in Playground

Or check if they have not:

user has not signed up
Try in Playground

You can also check how many times a user has signed up:

user has signed up at least 2 times
Try in Playground

You can even filter by time, such as checking if a sign‑up happened yesterday:

user has signed up yesterday
Try in Playground

Combine quantifiers and time-based conditions:

user has signed up at least 2 times this month
Try in Playground