What's the difference between "Block" and "Standard" in flow type? | XM Community
Skip to main content

What's the difference between "Block" and "Standard" in flow type?

  • October 21, 2022
  • 3 replies
  • 115 views

Forum|alt.badge.img+1

In survey flows, I found blocks of survey questions sometimes have the "Block" flow type, and sometimes have the "Standard" flow type. It is not clear to me why there is this distinction. Relevant API document is here: https://api.qualtrics.com/c2NoOjYwNTk1-flow-type.

3 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • October 21, 2022

mwang
The difference is the first default question block has Type: "Block" and all the sub-blocks have type:"Standard" as default. You can see in image below:
"Flow": [
            {
                "ID": "^BL_[a-zA-Z0-9]{11,15}$",
                "Type": "Block",
                "FlowID": "FL_2"
            },
            {
                "ID": "^BL_[a-zA-Z0-9]{11,15}$",
                "Type": "Standard",
                "FlowID": "FL_3"
            },
            {
                "ID": "^BL_[a-zA-Z0-9]{11,15}$",
                "Type": "Standard",
                "FlowID": "FL_4"
            }
        ],
But, if you include these blocks in a branch logic or below any element your each block will change it's type to "Block".
Hope it helps!


Forum|alt.badge.img+1
  • Author
  • October 24, 2022

SuhasM
Qualtrics Employee
Forum|alt.badge.img+16
  • Qualtrics Employee
  • October 24, 2022

Thank you so much for providing this image with the code! 🙂