Skip to main content

Components

Components are like building blocks. They allow you to build complex UIs and display business data using attribute models. The maximum number of components per screen is 50. Please refer to best practices for components. The following components are supported:

Text Components

Heading

This is the top level title of a page.
ParameterDescription
type
(required)
string
”TextHeading”
text
(required)
string
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True

Subheading

ParameterDescription
type
(required)
string
”TextSubheading”
text
(required)
string
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True

Body

ParameterDescription
type
(required)
string
TextBody
text
(required)
string
Dynamic ”$
font-weight
enum

Dynamic ”$
strikethrough
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
markdown
Boolean
Default: False

Requires Flow JSON V5.1+

Caption

ParameterDescription
type
(required)
string
”TextCaption”
text
(required)
string
Dynamic ”$
font-weight
enum

Dynamic ”$
strikethrough
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
markdown
Boolean
Default: False

Requires Flow JSON V5.1+

Limits and Restrictions

ComponentTypeLimit / Restriction
Heading
Subheading
Body
Caption
Character Limit80
80
4096
409
Heading
Subheading
Body
Caption
TextEmpty or Blank value is not accepted

Additional capabilities for Text components

Supported starting with Flow JSON version 5.1 In Flow JSON V5.1 TextBody and TextCaption also supports a limited markdown syntax. In order to enable this capability, set the property markdown=true; this will instruct Whatsapp Flows to enable markdown syntax within these components.
\{
   "type": "TextBody",
   "markdown": true,
   "text": [\
     "This text is ~~***really important***~~",\
   ]
}
\{
   "type": "TextCaption",
   "markdown": true,
   "text": [\
     "This text is ~~***really important***~~",\
   ]
}
For comparison purposes, we show how the text components look like next to one another: Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

This is a heading

This is a subheading

This is body text This is a text caption Continue Managed by the business. Learn more Learn more

Rich Text

Supported starting with Flow JSON version 5.1 Flow JSON 5.1 introduces a new component - RichText. The goal of the component is to provide a rich formatting capabilities and introduce the way to render large texts ( Terms of Condition, Policy Documents, User Agreement and etc) without facing limitations of basic text components ( TextHeading, TextSubheading, TextBody and etc)
ParameterDescription
type
(required)
string
”RichText”
text
(required)
string | string array
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
RichText component utilizes a select subset of the Markdown specification. It adheres strictly to standard Markdown syntax without introducing any custom modifications. Content created for the RichText component is fully compatible with standard Markdown documents. Note: Until V6.2, the RichText component can only be used as a standalone component on the screen and cannot be combined with other components on the same screen. Starting with V6.3, the RichText component can be used in conjunction with the Footer component on same screen, allowing the Flow to navigate from or end at the screen with RichText. If your use case requires to incorporate text with other components, consider using the basic Text component, which supports markdown features such as bold, italic, strikethrough, links and lists.

Supported Syntax

Headings

The current syntax supports only Heading (h1) and Subheading (h2). Other heading levels will be parsed but rendered as normal text - TextBody.
Flow JSONFlow Component
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "# Heading level 1",<br /> ]<br />}<br />TextHeading
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "## Heading level 2",<br /> ]<br />}<br />TextSubheading
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "### Heading level 3",<br /> "#### Heading level 4",<br /> "##### Heading level 5",<br /> "###### Heading level 6",<br /> ]<br /> }<br />TextBody

Paragraphs

To create paragraphs, split your text into different array items:
\{
       "type": "RichText",
       "text": [\
         "Paragraph 1",\
        "Paragraph 2",\
       ]
    }
or add a blank line in your markdown document that you bind using dynamic binding syntax ${data.your_dynamic_field}
# Heading 1
Paragraph 1

Paragraph 2
\{
       "type": "RichText",
       "text": "${data.text}"
    }

Text Formatting

Flow JSONFlow Component
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "Let’s make a **bold** statement",<br /> ]<br />}<br />TextBody (bold)
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "Let's make this text *italic*",<br /> ]<br />}<br />TextBody (italic)
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "Let's make this text ~~Strikethrough~~",<br /> ]<br />}<br />TextBody (strikethrough)
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "This text is ~~***really important***~~",<br /> ]<br />}<br />TextBody (bold-italic-strikethrough)

Lists

You can organize items into ordered and unordered lists. At the moment, only single level lists are supported.
Flow JSONFlow Component
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "1. Item 1",<br /> "2. Item 2",<br /> "3. Item 3"<br /> ]<br />}<br />OrderedList (not available as standalone component)
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "- Item 1",<br /> "- Item 2",<br /> "- Item 3"<br /> ]<br />}<br />
json<br />{<br /> "type": "RichText",<br /> "text": [<br /> "+ Item 1",<br /> "+ Item 2",<br /> "+ Item 3"<br /> ]<br />}<br />
UnorderedList (not available as standalone component)

Images

You can also include images in the content. Please note, external URIs are not supported and you can only include base64 inline images
\{
   "type": "RichText",
   "text": ["![Image alt text](<Base64-Image-Removed>)"]
}
Recommended image formats:
  1. png
  2. jpg / jpeg
  3. webp (please note, webp is only supported starting from IOS 14.6+, that corresponds to ~98% of IOS devices)
To create a link, enclose the link text in brackets and then follow it immediately with the URL in parentheses
\{
   "type": "RichText",
   "text": [\
     "[Whatsapp Flows are awesome](https://business.whatsapp.com/products/whatsapp-flows)",\
   ]
}

Tables

To add a table, use three or more hyphens (---) to create each column’s header, and use pipes (|) to separate each column. For compatibility, you should also add a pipe on either end of the row. Cell content can be combined with the following syntax:
  1. Italic, bold, strikethrough
  2. Images
  3. Links
\{
   "type": "RichText",
   "text": [\
     "| Column Header 1     | Column Header 2                                             |",\
     "| -------------       |  -------------                                              |",\
     "| **Bold** text 1     | [Link](&lt;URI&gt;)                                               |",\
     "| **Bold** text 1     | ![Image alt text](<Base64-Image-Removed>)   |",\
   ]
}
Width of the columns: Width of the column is based on the Header content size. Markdown specification doesn’t provide a specific syntax for controlling a column width. If you want to make a certain column wider, simply add additional content to the header:
\{
   "type": "RichText",
   "text": [\
     "| Column Header 1 - Extended width  | Column Header 2       |",\
     "| -------------                     |  -------------        |",\
     "| **Bold** text 1                   | Cell text 2           |",\
   ]
}

Working with large texts

If your text content for markdown has a limited size, you can incorporate it as a static text as shown in all examples above, however if your text is large and you expect to update it often on your server, we recommend sending it as a part of dynamic data, this will improve overall readability of the JSON and allow to load always up to date text from your server. Please note: We use array text property for static cases since it’s easier to read. However the components support both types: Array of strings and string. Your markdown can be sent as a normal string, you don’t need to convert it to an array of strings. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen TOC
Preview Flow Your content Managed by the business. Learn more Learn more

Syntax cheatsheet

Supported starting with Flow JSON version 5.1 Here is the quick overview of the syntax that’s supported by RichText, TextBody and TextCaption components
SyntaxRichTextTextBodyTextCaption
# Text Heading
## Text Subheading
**bold**
*italic*
~~strikethrough~~
Normal Paragraph
<br />+ Item 1<br />+ Item 2<br />
<br />1. Item 1<br />2. Item 2<br />
[Link text](https://your-url.here)
![Image Alt](<Base64-Image-Removed>)
```
Header 1Header 2Header 3
------------------------
Row 1Data 1More Data
Row 2Data 2More Data
Row 3Data 3More Data
```

Usage example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen FIRST_SCREEN
Preview Flow This is a markdown example inside TextCaption. You can combine different_formatting_styles You can also add links to external web-sites This is a markdown example inside TextCaption. You can combine different_formatting_styles. You can also add links to external web-sites And use Ordered and Unordered lists: List item List item RichText can be used to render large static or dynamic texts. Read more Read more Proceed Managed by the business. Learn more Learn more

Text Entry Components

TextInput

ParameterDescription
type
(required)
string
”TextInput”
label
(required)
string
Dynamic ”$
label-variant
string
”large”

Label will have a more prominent style and will be displayed across multiple lines if needed.


Supported starting with Flow JSON version 7.0
input-type
enum
pattern
String
When specified, it is a regular expression which the input’s value must match for the value to pass.


Supported starting with Flow JSON version 6.2
Supported with input-type=
Expects a raw regex string (e.g., hello, not /hello/).
When using the pattern field, helper-text is mandatory.
For input-type= , a base regular expression is applied before the pattern validator, ensuring both validations are performed.
required
Boolean
Dynamic ”$
min-chars
String
Dynamic ”$
max-chars
String
Dynamic ”$”.
Default value is 80 characters.
helper-text
String
Dynamic ”$
name
(required)
String
visible
Boolean
Dynamic ”$
Default: True
init-value
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0
error-message
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0

TextArea

ParameterDescription
type
(required)
string
”TextArea”
label
(required)
string
Dynamic ”$
label-variant
string
”large”


Label will have a more prominent style and will be displayed across multiple lines if needed.


Supported starting with Flow JSON version 7.0
required
Boolean
Dynamic ”$
max-length
String
Dynamic ”$
Default value is 600 characters.
name
(required)
String
helper-text
String
Dynamic ”$
enabled
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
init-value
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0
error-message
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0

Limits and Restrictions

ComponentTypeLimit / Restriction
TextInputHelper Text
Error Text
Label
80 characters
30 characters
20 characters
TextAreaHelper Text
Label
80 characters
20 characters
Together, the text entry components look like as shown: Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Text Input

Text Input

Number Input

Number Input

Email Input

Email Input

Password Input

Password Input

Passcode Input

Passcode Input

Phone Input

Phone Input

Regex Input

Regex Input

E.g. 1993-08-04

E.g. 1993-08-04

Regex Passcode

Regex Passcode

Contains: 007

Contains: 007 This is text area

Text Area

Text Area 17 / 600 Continue Managed by the business. Learn more Learn more

CheckboxGroup

CheckboxGroup component allows users to pick multiple selections from a list of options.
ParameterDescription
type
(required)
string
”CheckboxGroup”
data-source
(required)
Array
Dynamic ”$

Flow JSON versions before 5.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean>_<br />**Flow JSON versions after 5.0:** _Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string >
Flow JSON versions after 6.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string, on-select-action: {name: ‘update_data’, payload: {…}}, on-unselect-action: {name: ‘update_data’, payload: {…}} >`
name
(required)
String
min-selected-items
Integer
Dynamic ”$
max-selected-items
Integer
Dynamic ”$
enabled
Boolean
Dynamic ”$
label
string
Dynamic ”$

Flow JSON versions before 4.0: optional
Flow JSON versions after 4.0: required
required
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
on-select-action
Action
data_exchange and update_data are supported.
update_data Supported starting with Flow JSON version 6.0
on-unselect-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 6.0
In V6.0, if `on-unselect-action` is not added, `on-select-action` will continue to handle both selection and unselection events. However, if `on-unselect-action` is defined, it will exclusively handle unselection, while `on-select-action` will be used solely for selection.
description
String
Dynamic ”$

Supported starting with Flow JSON version 4.0
init-value
Array<String>
Dynamic ”$
Only available when component is outside Form component

Supported starting with Flow JSON version 4.0
error-message
String
Dynamic ”$
Only available when component is outside Form component

Supported starting with Flow JSON version 4.0
media-size
enum

Dynamic ”$

Supported starting with Flow JSON version 5.0
Images in WEBP format are not supported on iOS versions prior to iOS 14.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Extras: Pick something to go with your meal
  • Fries
  • Coleslaw
Continue Managed by the business. Learn more Learn more Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Explore our exciting packages
  • Image. beach vacation.
Tropical Beach VacationEnjoy 7 nights and 8 days at a luxury beach resort in Bali. Including flights and stays
  • Image. Mountain Adventure.
Mountain AdventureEmbark on a 5-day guided trek in the Swiss Alps. Package includes flights and stays
  • Image. City Break.
City BreakExplore the sights and sounds of New York City with our 4 nights and 5 days package
  • Image. Historical Tour.
Historical TourTake a 7-day historical tour of Rome, Italy. Package includes flights and stays Continue Managed by the business. Learn more Learn more For the data-source field, you can declare it dynamically or statically.

Static Example

This static example hardcodes the respective id’s and title’s for the data-source field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Checkbox group example(optional)
  • Checkbox 1
  • Checkbox 2
  • Checkbox 3
Continue Managed by the business. Learn more Learn more

Dynamic Example

In this dynamic example, you can see that data-source references the days_per_week_options of type array defined before it using days_per_week_options. When defining such a structure, you need to specify items in the array, which will be of type object. Then inside the items object, you have a properties dictionary with id and title just like in the static declaration. Both id and title will always be of type String. Within the days_per_week_options array, you must define concrete examples in the __example__ field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow How often would you like to workout?
  • 2 days a week
  • 3 days a week
  • 4 days a week
  • 5 days a week
  • 6 days a week
Continue Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Label Content
Title
Description
Metadata
Min # of options
Max # of options
Image
30 Characters
30 Characters
300 Characters
20 Characters
1
20
Flow JSON versions before 6.0:
300KB
Flow JSON versions after 6.0:
100KB

RadioButtonsGroup

ParameterDescription
type
(required)
string
”RadioButtonsGroup”
data-source
(required)
Array
Dynamic ”$

Flow JSON versions before 5.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean>_<br />**Flow JSON versions after 5.0:** _Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string >
Flow JSON versions after 6.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string, on-select-action: {name: ‘update_data’, payload: {…}}, on-unselect-action: {name: ‘update_data’, payload: {…}} >`
name
(required)
String
enabled
Boolean
Dynamic ”$
label
string
Dynamic ”$

Flow JSON versions before 4.0: optional
Flow JSON versions after 4.0: required
required
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
on-select-action
Action
data_exchange and update_data are supported.
update_data Supported starting with Flow JSON version 6.0
on-unselect-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 6.0
In V6.0, if `on-unselect-action` is not added, `on-select-action` will continue to handle both selection and unselection events. However, if `on-unselect-action` is defined, it will exclusively handle unselection, while `on-select-action` will be used solely for selection.
description
String
Dynamic ”$

Supported starting with Flow JSON version 4.0
init-value
Array<String>
Dynamic ”$
Only available when component is outside Form component

Supported starting with Flow JSON version 4.0
error-message
String
Dynamic ”$
Only available when component is outside Form component

Supported starting with Flow JSON version 4.0
media-size
enum

Dynamic ”$

Supported starting with Flow JSON version 5.0
Images in WEBP format are not supported on iOS versions prior to iOS 14.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Appointment type Choose your preferred appointment type
  • Online
  • In Person
Continue Managed by the business. Learn more Learn more Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Explore our exciting packages
  • Image. beach vacation.
Tropical Beach VacationEnjoy 7 nights and 8 days at a luxury beach resort in Bali. Including flights and stays
  • Image. Mountain Adventure.
Mountain AdventureEmbark on a 5-day guided trek in the Swiss Alps. Package includes flights and stays
  • Image. City Break.
City BreakExplore the sights and sounds of New York City with our 4 nights and 5 days package
  • Image. Historical Tour.
Historical TourTake a 7-day historical tour of Rome, Italy. Package includes flights and stays Continue Managed by the business. Learn more Learn more For the data-source field, you can declare it dynamically or statically.

Static Example

This static example hardcodes the respective id’s and title’s for the data-source field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Radio Buttons Group example
  • RadioButton 1
  • RadioButton 2
  • RadioButton 3
Continue Managed by the business. Learn more Learn more

Dynamic Example

In this dynamic example, you can see that data-source references the experience_level_options of type array defined before it using data.experience_level_options. When defining such a structure, you need to specify items in the array, which will be of type object. Then inside the items object, you have a properties dictionary with id and title just like in the static declaration. Both id and title will always be of type String. Within in the experience_level_options array you must define concrete examples in the __example__ field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow How experienced are you with weight training?
  • Beginner
  • Intermediate
  • Expert
Continue Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Label Content
Title
Description
Metadata
Min # of options
Max # of options
Image
30 Characters
30 Characters
300 Characters
20 Characters
1
20
Flow JSON versions before 6.0:
300KB
Flow JSON versions after 6.0:
100KB
ParameterDescription
type
(required)
string
”Footer”
label
(required)
string
Dynamic ”$
left-caption
String
Dynamic ”$

Can set left-caption and right-caption or only center-caption, but not all 3 at once
center-caption
String
Dynamic ”$

Can set center-caption or left-caption and right-caption, but not all 3 at once
right-caption
String
Dynamic ”$

Can set right-caption and left-caption or only center-caption, but not all 3 at once
enabled
Boolean
Dynamic ”$
on-click-action
(required)
Action
Action
Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen DEMO_SCREEN
Preview Flow This is a left caption This is a right caption This is a footer Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Label Max Character Limit
Captions Max Character Limit
35
15

OptIn

ParameterDescription
type
(required)
string
”OptIn”
label
(required)
string
Dynamic ”$
required
Boolean
Dynamic ”$
name
(required)
String
on-click-action
Action
Action that is executed on clicking “Read more”.

“Read more” is only visible when an on-click-action is specified.
Allowed values are data_exchange and navigate. From Flow JSON version 6.0 and later, allowed values are data_exchange, navigate and open_url.
on-select-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 6.0
on-unselect-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 6.0
visible
Boolean
Dynamic ”$
Default: True
init-value
Boolean
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen DEMO_SCREEN
Preview Flow This is an OptIn Read more Read more Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Content Max Character Limit
Max number of Opt-Ins Per Screen
120
5
ParameterDescription
type
(required)
string
”Dropdown”
label
(required)
string
data-source
(required)
Array
Dynamic ”$

Flow JSON versions before 5.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean>_<br />**Flow JSON versions after 5.0:** _Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string >
Flow JSON versions after 6.0: Array< id: String, title: String, description: String, metadata: String, enabled: Boolean, image: Base64 of an image, alt-text: string, color: 6-digit hex color string, on-select-action: {name: ‘update_data’, payload: {…}}, on-unselect-action: {name: ‘update_data’, payload: {…}} >`
required
Boolean
enabled
Boolean
Dynamic ”$
required
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
on-select-action
Action
data_exchange and update_data are supported.
update_data Supported starting with Flow JSON version 6.0
on-unselect-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 6.0
In V6.0, if `on-unselect-action` is not added, `on-select-action` will continue to handle both selection and unselection events. However, if `on-unselect-action` is defined, it will exclusively handle unselection, while `on-select-action` will be used solely for selection.
init-value
String
Dynamic ”$
Only available when component is outside Form component
error-message
String
Dynamic ”$
Only available when component is outside Form component
Images in WEBP format are not supported on iOS versions prior to iOS 14.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Burgers

Burgers Continue Managed by the business. Learn more Learn more Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Insurance options

Insurance options Continue Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Label
Title
Min dropdown options
Max dropdown options
Description
Metadata
Image
20 characters
30 characters
1
200 if no images are present in the data-source, 100 otherwise
300 characters
20 characters
Flow JSON versions before 6.0:
300KB
Flow JSON versions after 6.0:
100KB
For the data-source field, you can declare it dynamically or statically.

Static Example

This static example hardcodes the respective id’s and title’s for the data-source field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Dropdown

Dropdown

Dropdown

(optional) Continue Managed by the business. Learn more Learn more

Dynamic Example

In this dynamic example, you can see that data-source references the experience_level_options of type array defined before it using experience_level_options. When defining such a structure, you need to specify items in the array, which will be of type object. Then inside the items object, you have a properties dictionary with id and title just like in the static declaration. Both id and title will always be of type String. Within the experience_level_options array you must define concrete examples in the __example__ field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

How experienced are you with weight training?

Dropdown label

Dropdown label

Dropdown label

(optional) Continue Managed by the business. Learn more Learn more
ParameterDescription
type
(required)
string
”EmbeddedLink”
text
(required)
string
Dynamic ”$
on-click-action
(required)
Action
Action


Allowed values are data_exchange and navigate. From Flow JSON version 6.0 and later, allowed values are data_exchange, navigate and open_url.
visible
Boolean
Dynamic ”$
Default: True
Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen DEMO_SCREEN
Preview Flow This is an embedded link Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Character limit25
CaseNo restriction on formatting
Max Number of Embedded Links Per Screen2
TextEmpty or Blank value is not accepted

DatePicker

The DatePicker component allows users to input dates through an intuitive date selection interface. Before Flow JSON version 5.0, the DatePicker doesn’t support scenarios where the business and the end user are in different time zones. We recommend only using the component if you plan to send your Flows to users in a specific timezone. For details, please refer to section Guidelines for Usage Starting from Flow JSON version 5.0, the DatePicker has been updated to use a formatted date string in the format “YYYY-MM-DD”, such as “2024-10-21”, for setting and retrieving date values. This update makes the date values of the date picker unrelated to time zones, allowing businesses to send messages and collect dates from users in any time zone.
ParameterDescription
type
(required)
string
”DatePicker”
label
(required)
string
Dynamic ”$
min-date
String (timestamp in milliseconds)
Dynamic ”$”. Please refer to section
Guidelines for Usage
max-date
String (timestamp in milliseconds)
Dynamic ”$”. Please refer to section
Guidelines for Usage
name
(required)
string
unavailable-dates
Array < timestamp in milliseconds: String >
Dynamic ”$”. Please refer to section
Guidelines for Usage
visible
Boolean
Dynamic ”$
Default: True
helper-text
String
Dynamic ”$
enabled
Boolean
Dynamic ”$
Default: True
on-select-action
Action
Only `data_exchange` is supported.
init-value
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0
error-message
String
Dynamic ”$
Only available when component is outside Form component

Optional Form
Supported starting with Flow JSON version 4.0
Payload that is sent to a data channel business endpoint is a string which shows the timestamp in milliseconds. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Date

Date

(optional)

(optional) Continue Managed by the business. Learn more Learn more

Guidelines for Usage

Before flow JSON version 5.0

Due to current system limitations, the DatePicker functions correctly and as intended(that is, correct selection range is shown to the User, and accurate user-selection value is returned to the Business) as long as
  • The guidelines in this section are followed
  • Both the business sending the Flow and its end-users are in the same time zone.
Correct behavior is not guaranteed if businesses and end-users are in different time zones. For example, if a business operating in Sao Paulo (UTC-3) sends a Flow to a user in Manaus (UTC-4), the DatePicker may not work as expected. We don’t recommend using it if your users are in different time zones than you.

Handling of Dates for Businesses and Users in the Same Time Zone

DatePicker allows setting of date range for user selection through min-dates and max-dates fields, and also prevents selection of specific dates using the unavailable-dates field. If you have not supplied the date range , then by default, the component allows the user to select dates from 1 January 1900 to 31 December 2100. Setting Date Parameters in the Component When you specify the date range or set unavailable dates, you should convert your local dates with midnight (00:00:00) as a base time to UTC timestamps. For example, if you are a business based in India who wants to collect a date in the range 21 March 2024 to 25 March 2024, then you should set min-dates and max-dates as 1710958020000 and 1711303620000, respectively. 21 March 2024, 00:00:00.000 IST converts to 20 March 2024, 18:30:00.000 UTC which is represented by timestamp 1710958020000. 25 March 2024, 00:00:00.000 IST converts to 24 March 2024, 18:30:00.000 UTC which is represented by timestamp 1711303620000. Component Integration DatePicker will read the timestamps in min-dates, max-dates and unavailable-dates fields and convert it to the end user’s local date for displaying on the UI. In the example we discussed above, a user in India will see dates from 21 March 2024 to 25 March 2024 in the DatePicker component. Processing User Selection Businesses will receive a UTC timestamp, which should be converted back to the business’s local time zone. Importantly, businesses should focus solely on the date portion of the resulting timestamp , disregarding the time portion. This ensures that the date remains consistent with the user’s selection. Unfortunately, this conversion will only work correctly when the business and user are in the same time zone. For example, if you receive a timestamp 1711013400000 then convert it to your local timezone and extract the date. If you are in IST, the timestamp will convert to 21 March 2024 15:00 IST, and you should treat 21st March 2024 as the user selected date.

Recommendation for navigating Time Zone differences

If you need to send flow messages to users in time zones different from yours despite reviewing the above guidelines, follow these steps to overcome the limitation:
  • If you are a business based in Brazil and want to serve flows to your users across the country, then your time zone range will be UTC-2 (Fernando de Noronha) to UTC-5 (Rio Branco).
  • Add a Dropdown component within your Flow that allows users to select their current time zone.
  • Identify the westernmost time zone from your time zone range. In our example, it is UTC-5.
  • Provide the dates you want to collect in the westernmost time zone, using midnight as the reference time. For example, if you want to collect dates from March 20th, 2024 to March 25th, 2024, then provide the timestamp in milliseconds for March 20th, 2024 at 5 AM UTC and March 25th, 2024 at 5 AM UTC.
  • Convert the timestamps received from the user to their respective time zone and use the corresponding date. For example, if a user is in Sao Paulo(UTC-3) and you receive a timestamp of 1710910800000, then convert it to UTC-3 to get March 20th, 2024.

Start from flow JSON version 5.0

DatePicker component has been updated to use a formatted date string in the format “YYYY-MM-DD”, such as “2024-10-21”, for setting and retrieving date values. This update makes the date values of the date picker unrelated to time zones, allowing businesses to send messages and collect dates from users in any time zone in a consistent manner.

Limits and Restrictions

TypeLimit / Restriction
Label Max Length40 characters
Helper Text Max Length80 characters
Error Message Max Length80 characters

CalendarPicker

Supported starting with Flow JSON version 6.1 The CalendarPicker component allows users to select a single date or a range of dates from a full calendar interface.
ParameterDescription
type
(required)
String
”CalendarPicker”
name
(required)
String
title
String
Dynamic ”$
Only available when ‘mode’ is set to ‘range’
description
String
Dynamic ”$
Only available when ‘mode’ is set to ‘range’
label
(required)
String
Dynamic ”$
When ‘mode’ is set to ‘range’ the value should be in {"start-date": String, "end-date": String} format
helper-text
String
Dynamic ”$
When ‘mode’ is set to ‘range’ the value should be in {"start-date": String, "end-date": String} format
required
Boolean
Dynamic ”$
Default: False
When ‘mode’ is set to ‘range’ the value should be in {"start-date": Boolean, "end-date": Boolean} format
visible
Boolean
Dynamic ”$
Default: True
enabled
Boolean
Dynamic ”$
Default: True
mode
enum

Dynamic ”$
Default: “single”
Allows to select one date in ‘single’ mode or start and end dates in ‘range’ mode
min-date
String
Dynamic ”$
Formatted date string in the format “YYYY-MM-DD”
Disallows selecting dates before specified min-date
max-date
String
Dynamic ”$
Formatted date string in the format “YYYY-MM-DD”
Disallows selecting dates after specified max-date
unavailable-dates
Array<String>
Dynamic ”$
Formatted date strings in the format “YYYY-MM-DD”
Disallows selecting specific dates, should be in the range between min-date and max-date if specified
include-days
Array<enum>

Dynamic ”$
Default: all weekdays - [“Mon”, “Tue”, “Wed”, “Thu”, “Fri”, “Sat”, “Sun”]
Enables specific weekdays, for example to enable only working days Monday through Friday and disallow selecting Saturdays and Sundays
min-days
Integer
Dynamic ”$
Available only in ‘range’ mode to set the minimum number of days between start and end dates
max-days
Integer
Dynamic ”$
Available only in ‘range’ mode to set the maximum number of days between start and end dates
on-select-action
Action
Only ‘data_exchange’ is supported.
Payload that is sent to a data channel business endpoint is a string in “YYYY-MM-DD” format for ‘single’ mode or dictionary in {"start-date":"YYYY-MM-DD","end-date":"YYYY-MM-DD"} format for ‘range’ mode
init-value
String
Dynamic ”$
When ‘mode’ is set to ‘range’ the value should be in {"start-date": String, "end-date": String} format
Only available when component is outside Form component
error-message
String
Dynamic ”$
When ‘mode’ is set to ‘range’ the value should be in {"start-date": String, "end-date": String} format
Only available when component is outside Form component

Examples

CalendarPicker single mode example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Single date

Single date

Select a date

Select a date Continue Managed by the business. Learn more Learn more

CalendarPicker range mode example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Range calendar Use this to select a date range

Start date

Start date

Select from date

Select from date

End date

End date

(optional)

(optional)

Select to date

Select to date Continue Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Title Max Length80 characters
Description Max Length300 characters
Label Max Length40 characters
Helper Text Max Length80 characters
Error Message Max Length80 characters

Image

ParameterDescription
type
(required)
string
”Image”
src
(required)
string
Base64 of an image.
Dynamic ”$
width
Integer
Dynamic ”$
height
Integer
Dynamic ”$
scale-type
string
`cover` or `contain`
Default value: `contain`
aspect-ratio
Number
Default value: 1
Dynamic ”$
alt-text
string
Alternative Text is for the accessibility feature, eg. Talkback and Voice over
Dynamic ”$

Image Scale Types

Scale TypeDescription
coverImage is clipped to fit the image container.
If there is no height value (which is the default), the image will be displayed to its full width with its original aspect ratio.
If the height value is set, the image is cropped within the fixed height. Depending on the image whether it is portrait or landscape, image is clipped vertically or horizontally.
containImage is contained within the image container with the original aspect ratio.
If there is no height value (which is the default), the image will be displayed to its full width with its original aspect ratio.
If the height value is set, the image is contained in the image container with the fixed height and the original aspect ratio.
Developers should consider setting a specific height, width and aspect ratio for images whenever using contain. On Android devices WhatsApp sets a default height value of 400, which may create some unwanted spacing.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Continue Managed by the business. Learn more Learn more

Limits and Restrictions

TypeLimit / Restriction
Max number of images per screen
Recommended image size
Total data channel payload size
Supported images formats
3
Up to 300kb
1 Mb
JPEG
PNG

If

Supported starting with Flow JSON version 4.0
ParameterDescription
type
(required)
string
”If”
condition
(required)
string
Boolean expression, it allows both dynamic and static data. Check section below for more info.
then
(required)
Array of Components
The components that will be rendered when `condition` is `true`. Allowed components: “TextHeading”, “TextSubheading”, “TextBody”, “TextCaption”, “CheckboxGroup”, “DatePicker”, “Dropdown”, “EmbeddedLink”, “Footer”, “Image”, “OptIn”, “RadioButtonsGroup”, “Switch”, “TextArea”, “TextInput” and “If”*. It is allowed to nest up to 3 “If” components.

From V7.1 ChipsSelector is also allowed together with all the previous listed components.
else
Array of Components
The components that will be rendered when `condition` is `false`. Allowed components: “TextHeading”, “TextSubheading”, “TextBody”, “TextCaption”, “CheckboxGroup”, “DatePicker”, “Dropdown”, “EmbeddedLink”, “Footer”, “Image”, “OptIn”, “RadioButtonsGroup”, “Switch”, “TextArea”, “TextInput” and “If”*. It is allowed to nest up to 3 “If” components.


From V7.1 ChipsSelector is also allowed together with all the previous listed components.

Supported Operators

OperatorSymbolTypes allowedDescription and examples
Parentheses()boolean
number
string
It is used to define the precedence of operations. Or if you want to perform boolean operations that one of the sides is a result of a number or string comparison. It always require an operation within it. One expression can contain multiple parentheses. Examples:
- `$
(data.numvalue>5)<br/>{data.num_value} > 5)`<br />- ` && (form.address!=)<br/>!{form.address} != '')`<br />- `!`
Equal to==boolean
number
string
It is used to compare booleans, numbers and strings. Both sides should have the same type and at least one of them should contain a dynamic variable. Examples:
- ${form.opt_in} == true
- ${data.num_value} == 5
- ${form.city} == 'London'
Not equal to!=boolean
number
string
It is used to compare booleans, numbers and strings. Both sides should have the same type and at least one of them should contain a dynamic variable. Examples:
- ${form.opt_in} != true
- ${data.num_value} != 5
- ${form.city} != 'London'
AND&&booleanIt performs the boolean AND operation. It evaluates as true only if both sides are true. This operator has high priority, i.e. it will be evaluated before other operators. The exception is parentheses, if one of the sides contain an opening or closing parenthesis, then the parenthesis is evaluated first. Example:
- ${form.opt_in} && ${data.boolean_value}
OR``booleanIt performs the boolean OR operation. It evaluates as true if at least one side is true. Example:
- `$
$`
NOT!booleanIt performs the boolean NOT operation. It negates the statement after it. It can be used before immediately boolean values or parentheses (that will result into boolean values) Examples:
- `!($
data.booleanvalue)<br/>!({data.boolean_value})`<br />- `!( > 5)<br />- !$`
Greater than>numberIt is used to compare to numbers. At least one of them should be a dynamic variable. Examples:
- ${data.num_value} > 5
- ${data.num_value} > ${data.num_value2}
Greater than or equal to>=numberIt is used to compare to numbers. At least one of them should be a dynamic variable. Examples:
- ${data.num_value} >= 5
- ${data.num_value} >= ${data.num_value}
Less than<numberIt is used to compare to numbers. At least one of them should be a dynamic variable. Examples:
- ${data.num_value} < 5
- ${data.num_value} < ${data.num_value2}
Less than or equal to<=numberIt is used to compare to numbers. At least one of them should be a dynamic variable. Examples:
- ${data.num_value} == 5
- ${data.num_value} <= ${data.num_value}

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Animal

Animal

(optional)

(optional)

Type: cat

Type: cat

It is not a cat

Complete Managed by the business. Learn more Learn more

Rules

Condition

  • Should have at least one dynamic value (e.g. ${data...} or ${form...}).
  • Should always be resolved into a boolean (i.e. no strings or number values).
  • Can be used with literals but should not only contain literals.
  • Footer can be added within If only in the first level, not inside a nested If.
  • If there is a Footer within If, it should exist in both branches (i.e. then and else). This means that else becomes mandatory.
  • If there is a Footer within If it cannot exist a footer outside, because the max count of Footer is 1 per screen.

Limitations and restrictions

The table below show examples of limitations and validation errors that will be shown for certain cases.
ScenarioValidation error shown
- Given there is a footer component inside then
- And``else is not defined
- When validating the flow
- Then it should show a validation error
Missing Footer inside one of the if branches. Branch “else” should exist and contain one Footer.
- Given there is a footer component inside then
- And there is no footer inside else
- When validating the flow
- Then it should show a validation error
Missing Footer inside one of the if branches.
- Given there is no footer component inside then
- And there is a footer inside else
- When validating the flow
- Then it should show a validation error
Missing Footer inside one of the if branches.
- Given there is a footer component inside then
- And there is a footer component inside else
- And there is a footer component outside the If
- When validating the flow
- Then it should show a validation error
You can only have 1 Footer component per screen.
- Given there is an empty array defined for then
- When validating the flow
- Then it should show a validation error
Invalid value found at: “$root/screens/path_to_your_component/then” due to empty array. It should contain at least one component.

Switch

Supported starting with Flow JSON version 4.0
ParameterDescription
type
(required)
string
”Switch”
value
(required)
string
A variable that will have its value evaluated during runtime. Example
- `$`
cases
(required)
Map of Array of Components
Each property is a key (string) that maps to an Array of Components. When the `value` matches the key, it renders its array of components. Allowed components: “TextHeading”, “TextSubheading”, “TextBody”, “TextCaption”, “CheckboxGroup”, “DatePicker”, “Dropdown”, “EmbeddedLink”, “Footer”, “Image”, “OptIn”, “RadioButtonsGroup”, “TextArea”, “TextInput”.


From V7.1 ChipsSelector is also allowed together with all the previous listed components.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Animal

Animal

(optional)

(optional)

Type: cat, dog or anything else

Type: cat, dog or anything else

It is neither a cat nor a dog

Switch is missing required property “value”. Complete Managed by the business. Learn more Learn more

Rules

Cases

  • Should have at least one value. It cannot be empty (e.g. "cases": {})

Limitations and restrictions

The table below show examples of limitations and validation errors that will be shown for certain cases.
ScenarioValidation error shown
- Given there is a Switch component
- And its cases property is empty
- When validating the flow
- Then it should show a validation error
Invalid empty property found at: “$root/screens/path_to_your_component/cases”.

Media upload

Please refer to the specific page for media upload components. Supported from Flows v6.2+. The NavigationList component allows users to navigate effectively between different screens in a Flow, by exploring and interacting with a list of options. Each list item can display rich content such as text, images and tags.
ParameterDescription
type
(required)
string
”NavigationList”
name
(required)
string
list-items
(required)
array
Dynamic ”$
label
string
Dynamic ”$
description
string
Dynamic ”$
media-size
enum

Default: ‘regular’
Dynamic ”$
on-click-action
action
`data_exchange` and `navigate` are supported.
Each item in the list of items supports the following properties:
ParameterDescription
main-content
(required)
object
- (required) title <string>

- description <string>

- metadata <string>
end
object
- title <string>

- description <string>

- metadata <string>
start
object
- (required) image <base64 encoding of an image>

- alt-text <string>
badge
string
tags
Array<string>
on-click-action
action
`data_exchange` and `navigate` are supported.
Images in WEBP format are not supported on iOS versions prior to iOS 14. The on-click-action is required for the component, and it can be defined either:
  • Once at component-level and it will apply the same action for all items in the list.
  • Individually, on each item in the list to allow for different actions to be triggered.

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen FIRST_SCREEN
Preview Flow
  • Home InsuranceSafeguard your home against natural disasters, theft, and accidents
$100/ month
  • Health InsuranceGet essential coverage for doctor visits, prescriptions, and hospital stays
$80/ month
  • Intergalactic InsuranceEnjoy coverage for asteroid collisions, alien encounters, and other risks
$1.000/ month
  • Time Travel InsuranceReady for paradox-related damages or unforeseen consequences of altering history
$980/ month
  • Dream Loss InsuranceProtection from recurring nightmares or lost opportunities due to poor sleep
$540/ month Managed by the business. Learn more Learn more

Dynamic Example

In this dynamic example, you can see that list-items references the insurances of type array defined before it using insurances. When defining such a structure, you need to specify items in the array, which will be of type object. Then inside the items object, you have a properties dictionary with id and main-content just like in the static declaration. Both id will always be of type string and main-content will always be of type object, and accompanied by a definition of its structure. Within the insurances array, you must define concrete examples in the __example__ field. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings Select screen FIRST_SCREEN
Preview Flow
  • Home InsuranceSafeguard your home against natural disasters, theft, and accidents.
  • Health InsuranceGet essential coverage for doctor visits, prescriptions, and hospital stays.
Managed by the business. Learn more Learn more

Limits and Restrictions

  • The `Navigation List` component cannot be used on a terminal screen.
  • There can be at most 2 `Navigation List` components per screen.
  • The `Navigation List` components cannot be used in combination with any other components in the same screen.
  • There can be only one item with a `badge` per list.
  • The `end` add-on cannot be used in combination with `media-size` set to `large`.
  • The `on-click-action` cannot be defined simultaneously on component-level and on item-level.

Component restrictions

PropertyLimit / Restriction
list-itemsminimum 1 and maximum 20 items
Content will not be rendered if the limit is reached
label80 characters
Content will truncate if the limit is reached
description300 characters
Content will truncate if the limit is reached

List items restrictions

Content over the limit specified will not be rendered.
Add-on / propertyPropertyLimit / Restriction
startimage100KB
Images over the limit will be replaced by a placeholder
main-contenttitle
description
metadata
30 characters
20 characters
80 characters
endtitle
description
metadata
10 characters
10 characters
10 characters
badge15 characters
tags15 characters
3 items

Chips Selector

Chips Selector component allows users to pick multiple selections from a list of options. Supported starting with Flow JSON version 6.3
ParameterDescription
type
(required)
string
”ChipsSelector”
data-source
(required)
Array
Dynamic ”$

Array< id: String, title: String, enabled: Boolean, on-select-action: {name: ‘update_data’, payload: {…}}, on-unselect-action: {name: ‘update_data’, payload: {…}} >`
name
(required)
String
min-selected-items
Integer
Dynamic ”$
max-selected-items
Integer
Dynamic ”$
enabled
Boolean
Dynamic ”$
label
(required)
string
Dynamic ”$
required
Boolean
Dynamic ”$
visible
Boolean
Dynamic ”$
Default: True
description
String
Dynamic ”$
init-value
Array<String>
Dynamic ”$
Only available when component is outside Form component
error-message
String
Dynamic ”$
Only available when component is outside Form component
on-select-action
Action
`data_exchange` and `update_data` are supported.

update_data Supported starting with Flow JSON version 7.1
on-unselect-action
Action
Only `update_data` is supported.

Supported starting with Flow JSON version 7.1
In V7.1, if `on-unselect-action` is not added, `on-select-action` will continue to handle both selection and unselection events. However, if `on-unselect-action` is defined, it will exclusively handle unselection, while `on-select-action` will be used solely for selection.
If on-unselect-action is not added, on-select-action will continue to handle both selection and unselection events. However, if on-unselect-action is defined, it will exclusively handle unselection, while on-select-action will be used solely for selection.

Limits and Restrictions

TypeLimit / Restriction
Label
Description
Min # of options
Max # of options
80 Characters
300 Characters
2
20

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Personalize your experience(optional) Choose your interests to get personalized design ideas and solutionChoose up to 2 options. 🏡 Room layouts 💡 Lighting 🛠️ Renovation 📐 Room layouts Continue Managed by the business. Learn more Learn more The Image Carousel component allows users to slide through multiple images. Supported from Flows v7.1+.
ParameterDescription
type
(required)
string
”ImageCarousel”
images
(required)
array
Dynamic ”$
aspect-ratio
string
Either “4:3” or “16:9”.
Default: “4:3”.
scale-type
string
Either “contain” or “cover”.
Default: “contain”.
Each item in the list of images supports the following properties:
ParameterDescription
src
(required)
string
Base64 of an image.
alt-text
(required)
string
Alternative text for for accessibility purposes.

Limits and Restrictions

TypeLimit / Restriction
Min # of images
Max # of images
Max # of ImageCarousel per screen
Max # of ImageCarousel per Flow
1
3
2
3

Example

Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Landscape image. Image 1 of 3. Swipe with three fingers to see more images. Square image. Image 2 of 3. Swipe with three fingers to see more images. Portrait image. Image 3 of 3. Swipe with three fingers to see more images. Continue Managed by the business. Learn more Learn more

Dynamic components

Here’s a corrected version: If you check the attribute model of certain components (Dropdown, DatePicker, RadioGroup and CheckboxGroup), you will find that some of them accept the on-xxxx-action attribute. This attribute allows the component to trigger a data-exchange action. It can be used in the following scenarios:
  1. When a user selects a date in the DatePicker component.
  2. When the business needs to fetch available data (such as table slots, tickets, etc.) for this selected date by calling a data_exchange action.
  3. Once the data is received, the user will see an updated screen with new data.

Prerequisites

The following steps require communication between the client and the business server. Please ensure that you have configured the data channel before attempting to use this feature.

Step 1 - Defining the layout

Let’s begin with a minimal example, consisting of an empty form and a CTA button, and gradually add more components. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow Book Managed by the business. Learn more Learn more So, we want to build a simple form that takes a date and displays the list of available time slots. First, we’ll add a DatePicker component: Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select a date

Select a date

(optional)

(optional) Book Managed by the business. Learn more Learn more Next step is to add a Dropdown where we will display all available timeslots: Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select a date

Select a date

(optional)

(optional)

Pick a slot

Pick a slot

Pick a slot

(optional) Book Managed by the business. Learn more Learn more

Step 2 - Defining 3P Data

Until now, we’ve been incorporating static mock data, but now we aim to connect a screen with dynamic data. Dynamic data can originate from various sources:
  1. Initial message payload
  2. navigate - transitioning from the previous screen using a navigate action
  3. data_exchange - a request to the business server
In this example, we’ll assume that the data will come from a data_exchange request. So, let’s instruct Flow JSON to use the data channel request by providing the "data_api_version": "3.0" property. Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select a date

Select a date

(optional)

(optional)

Pick a slot

Pick a slot

Pick a slot

(optional) Book Managed by the business. Learn more Learn more

Step 3 - Allowing DatePicker to Make a Request to the Server

Let’s provide "on-select-action" to the DatePicker component so we can execute the call to the business server. In the payload, we can pass any data we want to the business server to understand the type of request.
\{
   "on-select-action":{
      "name":"data_exchange",
      "payload":{
         "date":"${form.date}",
         "component_action":"update_date"
      }
   }
}
Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select a date

Select a date

(optional)

(optional)

Pick a slot

Pick a slot

Pick a slot

(optional) Book Managed by the business. Learn more Learn more In this example, we’ll send the value of the field date to the action payload, and we’ll also add some static data "component_action": "update_date" to help the server recognize the type of request. There is no strict format here; you can choose whatever works for your case. Now when you try to select a date, a data_exchange request will be executed. The server may return the data that can change the UI. For now, our Flow doesn’t expect or use any data from the server. Let’s fix it by first defining the data model that we expect for a screen.

Step 4 - Define a Server Data Model

Let’s declare a data property for the screen outlining the data that we expect to receive from the server. So, we want to receive an available_slots array with timeslot options. It should have the following model. The __example__ field is mock data used to display the data within the web preview.
\{
    "available_slots": {
        "type": "array",
        "items": {
            "type": "object",
            "properties": { "id": {"type": "string"}, "title": {"type": "string"} }
        },
        "__example__": [ {"id": "1", "title": "08:00"}, {"id": "2", "title": "09:00"} ]
    }
}
It means that the expected payload to be returned from server can look like the following:
\{
    "version": "3.0",
    "screen": "BOOKING",
    "data": {
       "available_slots": [ {"id": "1", "title": "08:00"}, {"id": "2", "title": "09:00"} ]
    }
}
So you Flow JSON now should look like the following: Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select date

Select date

Time

Time

Time

(optional) Start Managed by the business. Learn more Learn more

Step 5 - Control Visibility of the Component

Now, when we select a date in DatePicker, the application will send a request to the business server to get available timeslots. However, we don’t want a Dropdown to be visible until there is data to display. How can we hide it? For this purpose, we can use the visible attribute on Dropdown and connect it with server data. The business server can control the visibility of the component based on a set condition. So, we need to make the following changes:
  1. Define is_dropdown_visible in the data model of the screen.
  2. Connect a property via dynamic binding "visible": "${data.is_dropdown_visible}".
  3. Ensure that the server returns the correct data.
Let’s update our code: NOTE: The current version of the playground doesn’t support endpoint requests Flow JSON { Enter to Rename, Shift+Enter to Preview Preview Run Settings
Preview Flow

Select date

Select date Start Managed by the business. Learn more Learn more

Summary

That’s it! Now you have a dynamic component set up. If you’re facing any challenges, feel free to ask a question on the developer forum. We’ll be happy to help! ←\ \ Previous\ \ Flow JSON →\ \ Next\ \ Flows API On This Page Components Text Entry Components TextInput TextArea Limits and Restrictions CheckboxGroup Example Static Example Limits and Restrictions RadioButtonsGroup Example Static Example Dynamic Example Limits and Restrictions Footer Limits and Restrictions OptIn Example Limits and Restrictions Dropdown Example Limits and Restrictions Dynamic Example Embedded Link Limits and Restrictions DatePicker Before flow JSON version 5.0 Start from flow JSON version 5.0 Limits and Restrictions CalendarPicker Examples Limits and Restrictions Image Image Scale Types Example Limits and Restrictions If Supported Operators Example Rules Limitations and restrictions Switch Example Rules Limitations and restrictions Media upload Navigation List Example Dynamic Example Limits and Restrictions Chips Selector Limits and Restrictions Image Carousel Limits and Restrictions Example Prerequisites Step 1 - Defining the layout Step 2 - Defining 3P Data Step 3 - Allowing DatePicker to Make a Request to the Server Step 4 - Define a Server Data Model Step 5 - Control Visibility of the Component