Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ export const AnonymousLinksTab = ({
},
{
title: t("environments.surveys.share.anonymous_links.custom_start_point"),
href: "https://formbricks.com/docs/xm-and-surveys/surveys/link-surveys/start-at-question",
href: "https://formbricks.com/docs/xm-and-surveys/surveys/link-surveys/start-at-block",
},
]}
/>
Expand Down
8 changes: 6 additions & 2 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"xm-and-surveys/surveys/link-surveys/personal-links",
"xm-and-surveys/surveys/link-surveys/single-use-links",
"xm-and-surveys/surveys/link-surveys/source-tracking",
"xm-and-surveys/surveys/link-surveys/start-at-question",
"xm-and-surveys/surveys/link-surveys/start-at-block",
"xm-and-surveys/surveys/link-surveys/verify-email-before-survey",
"xm-and-surveys/surveys/link-surveys/market-research-panel",
"xm-and-surveys/surveys/link-surveys/pin-protected-surveys",
Expand Down Expand Up @@ -516,9 +516,13 @@
"source": "/docs/link-surveys/global/schedule-start-end-dates"
},
{
"destination": "/docs/xm-and-surveys/surveys/link-surveys/start-at-question",
"destination": "/docs/xm-and-surveys/surveys/link-surveys/start-at-block",
"source": "/docs/link-surveys/start-at-question"
},
{
"destination": "/docs/xm-and-surveys/surveys/link-surveys/start-at-block",
"source": "/docs/xm-and-surveys/surveys/link-surveys/start-at-question"
},
{
"destination": "/docs/xm-and-surveys/surveys/general-features/metadata",
"source": "/docs/link-surveys/global/metadata"
Expand Down
42 changes: 42 additions & 0 deletions docs/xm-and-surveys/surveys/link-surveys/start-at-block.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: "Start At Specific Block"
description:
"Start a survey at a specific block using the URL to skip earlier blocks."
icon: "arrow-right"
---

The `startAt` URL parameter lets you open a Link Survey at a specific **block** instead of from the beginning. This is useful when you want to link to a specific part of the survey from external sources or reuse the same survey at different points in the user journey.

## How it works

The survey navigation is block-based: each block can contain one or more questions. When you pass `startAt` with a Question ID, the survey finds the **block** that contains that question and opens at that block. All questions in that block are shown together.

<Note>
**Multi-question blocks:** When a block has multiple questions, `startAt` opens at the block—you will see all questions in that block, not only the question whose ID you used. For precise "start at this exact question" behavior, use one question per block.
</Note>

## How to use it

1. In the Survey Editor, open the Questions Tab and ensure the survey is set as a **Link Survey**.

2. Find the question (or block) you want to start at, click on **Show Advanced Settings**, and copy the **Question ID** of any question in that block.

<Note>
Each question has a unique Question ID. Since `startAt` resolves to the block containing the question, you can use any question ID from the target block—typically the first question in that block.
</Note>

3. Append `?startAt=question_id` to your survey's URL, replacing `question_id` with the copied Question ID.

4. Share this modified URL with your users to start the survey at the specified block.

### Sample Link Survey URL with `startAt`

```sh Example Link Survey URL with startAt configured
https://formbricks.com/clny997dj087ho30fdzyf4nkl?startAt=bqd29m94l9k0hnc3azbrexl8
```

## Use cases

- **Link to a specific block from an external source:** Direct users to a specific block in your survey from emails, chatbots, or web pages.
- **Use the same survey in different parts of the user journey:** Reuse the survey at different stages, starting at different blocks to gather insights.
- **Create a personalized survey experience:** Tailor the survey by starting at a particular block based on the user's past interactions or preferences.
36 changes: 0 additions & 36 deletions docs/xm-and-surveys/surveys/link-surveys/start-at-question.mdx

This file was deleted.

Loading