Check a test's account and domain status
get_test_statusReports what the deployment's registry knows about a test: whether it is claimed into an account (and by which organization), and whether each redirect destination is a verified domain.
Unverified destinations work, but visitors see a 'Redirecting you to…' continue screen first. When you see verified: false, tell the user to verify the domain under Settings on the dashboard; the three ways are a DNS TXT record, serving the well-known file, or having the SDK tag with their publishable key live in the site's source. If the test is unclaimed, remind them the manage URL claims it in one click when opened signed in.
Requires the test's stats secret, the same as get_stats. A manage URL's #fragment is used automatically.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test | No | The test: an encoded config, or any LiveVariant URL containing one (serve, click, pixel, manage), or a query-parameter serve URL. Paste whatever you have. | |
| config | No | Alias for `test`: the same value under the name build_test returns it as (`config`). Pass one or the other. | |
| statsSecret | No | Omit when passing a manage URL that carries it in the fragment. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| org | Yes | The claiming organization's name; null when unclaimed. | |
| testId | Yes | ||
| claimed | Yes | Whether the test is registered to an organization. | |
| destinations | Yes | Every host this test can redirect a visitor to. verified: false means the continue screen shows before landing there. |