Use this file to discover all available pages before exploring further.
Create an A/B test to determine if a friendlier signup headline leads to more users completing registration. Your current headline is “Create your account.” You want to test “Join in seconds” against it, measure which produces more successful signups, and promote the winner.
Update your signup page template to read the signup_headline parameter from experiment context. The exact syntax depends on your template engine and the variable name injected by the Experiment Center.Example with EJS templating:
Run test signups through your test tenant. Open tenant logs and find successful signup events (type: "ss"). Confirm the experiment field is present:Control user signup event:
Pull enriched signup events from your analytics tool and compare completion rates across variation groups. A typical analysis:Step 1: Count signup attempts per variationIdentify /authorize requests that reached the signup screen. At Beta, you track these via failed signup attempts (type: "fs") and successful signups (type: "ss") grouped by experiment.variation_id.Step 2: Count completions per variationCount type: "ss" (successful signup) events grouped by experiment.variation_id.Step 3: Compute completion rates
Compare completion_rate across the two variations. A higher completion rate for the treatment indicates the headline change had a positive effect.Example Snowflake query (sketch):
SELECT experiment_value:variation_id::string AS variation_id, COUNT(*) AS total_attempts, COUNT_IF(type = 'ss') AS successful_signups, successful_signups / total_attempts * 100 AS completion_rate_pctFROM auth_eventsWHERE experiment_value:experiment_id::string = 'exp_1Vb7xQ4rNmWp9kDsZu3hJg' AND type IN ('ss', 'fs') AND date >= '2026-06-01'GROUP BY variation_id;
The exact JSON path for the experiment field in Snowflake depends on how your warehouse processes tenant log events. Replace experiment_value with the actual JSON column name in your warehouse, and check with your data engineer if you are unsure.
Promotion is manual at Beta. Automated promotion (the system directly applying the winning variation to your tenant configuration) is a post-GA feature.
Only one experiment can be active per tenant at a time. Complete this experiment before starting a new one on a different feature.