Skip to main content

Variables

Variables are placeholders that can hold a value and can be used to store user input, data from external systems, or any other relevant information that needs to be saved and used later in the bot conversation. Variables help in creating dynamic and personalized bot conversations.

For example, let's sayß that you want to create a chatbot that greets users by name. You can use a variable to store the user's name and then use it later in the conversation.

For example,


Hello {{user_name}}, how can I help you?

The following table consists of various data types that are supported by variables, along with their examples.

Data TypeDescriptionExample
NumberFor storing numbers, including floating-point numbers.10, 3.14, -15
StringFor storing alphanumeric characters.'Harry', 'PAN9856', '123starbucks'
ObjectFor storing batch data such as database, API responses, or results from a date prompt.{"Name": "Ron", "Phone": 9980808080, "Age": 40}
ArrayFor storing a list of multiple values of different data types.[1,2,3,"Text"], ["india", "+91"]
BooleanFor storing logical data with true or false values (1/0).true, false
note

Ensure you add the data type values in the format mentioned here, for example, if you're storing a string value it should be within ''

Types of variables

There are 4 different types of variables offered by yellow.ai. They are:

  1. Custom variables
  • Journey(flow level variables)
  • Global(bot level variables)
  1. System variables
  2. Config variables
  3. User properties

Custom Variables

Custom Variables are variables created by bot builders to meet their specific business requirements. They are further divided into two types: Journey Variables and Global Variables.

  • Journey Variable: A Journey Variable is accessible only within the journey for which it was created. It stores values related to a specific user journey and can be used only within that journey. Journey variables hold values exclusively for the duration of a single session (user's interaction with the bot). These variables maintain their values throughout the session and are automatically reset once the session ends.
  • Global Variable: A Global Variable, on the other hand, is accessible across journeys and can be used in APIs.
note

These variables store values only within a session. Click here to know more about sessions.

In the following example, Email is stored as a Global Variable (as it remains unchanged throughout the bot). In contrast, the State_ride variable (which stores the departure location) is a Journey Variable because the user is directed to a different flow where this information is no longer needed.

Custom Variables Example

System Variables

System variables are pre-defined variables that store information about the user session, conversation, and bot configuration. They're available by default in the platform and can be used across bot flows to personalize the conversation and provide relevant information to the user.

note

The variable names cannot be altered, and new variables cannot be added to this category.

The following are the system variables available on the platform:

VariableData typeUse
sourcestringReturns the channel from which the message was sent.
senderstringReturns the sender ID. For example: mobile number for WhatsApp.
profileobjectReturns the user’s profile as an object.
pageUrlstringReturns the URL of the user's current page.
sentimentobjectReturns the sentiment of the user message- positive, negative, or neutral.
sessionMessageLogUrlstringReturns a URL to the chat’s transcript.
dateobjectReturns the current date and time.
channelProfilestringReturns profile ID of the user in that specific channel.
channelProfileNamestringReturns the profile name of the user in that specific channel.

{{{system_variable_name}}} notation is used to access system variables.

info

You can access the user profile using this syntax: {{{profile.field_name}}}.

The following fields are available in the user profile object:

  • city
  • country
  • country_code
  • firstTime (if the user is visiting the bot for the first time)
  • ip
  • latitude
  • longitude
  • name (generated user name)
  • region

To know more, see System user properties.

Config Variables

Config variables are variables that are used to store a wide range of information, including API keys, URLs, database connection strings, and other configuration settings that are used throughout the bot flow. By storing these values, bot builders can use them across multiple flows without modifying any code.

For example, let's say that a bot needs to connect to a specific external API. Rather than hardcoding the API key directly into the bot's code, bot builders can create a config Variable called api_key and store the value there. If the API key ever needs to be updated, the bot builder can simply modify the value of the api_key, without needing to make any changes to the bot's code.

To create a config variable:

  1. Go to Studio > go to the specific flow and click the variable icon.

  2. Go to Config variable > + Add variable.

    • Variable name: Enter a name for the variable.
      • Data type: Choose the data type based on the data to be stored.
      • Value: Enter the data to be stored.

  3. Click Add.

User Properties

User Properties are variables that store information about each individual user interacting with the bot. These properties are stored directly in User 360 help personalize the user's experience and can be used to make decisions about which messages or actions to display. Examples of User Properties include name, email address, and location.

note

To create new user properties, click here for the steps.

Create a Variable

note

Only Custom and Config variables can be added, while System Variables and User Properties are predefined and cannot be modified.

  1. Go to Studio and click the variable icon on the left.

  1. Click the peferred tab(Custom/Config), if Custom, choose Journey variables or Global variables and click +Add Variable.

  1. Enter your preferred Variable name and select the respective Data type for the variable.
drawing
  1. Based on the chosen data type, the sample Value will be displayed automatically. Custom values to be stored in that variable can also be added.
  2. Click +Add.

Create a Variable via nodes

You can also create global variables through nodes and those variables can be used in any flow or node.

note

You can create variables only from Prompt and Action nodes.

To create a variable via nodes:

note

We recommend using new variables to store data rather than reusing existing ones, as the values may get overwritten.

  1. Select Flows > Create flow. To know more about creating flows, click here.
  2. While creating a flow, if you want to store a user response in a variable and that variable does not exist, you can create a new variable via node by clicking Store Response in > Select variable.

  1. Click Create new variable.
drawing
  1. Add the variable name and datatype, and click Add. This global variable can be used in any node/flow.
drawing

Store and retrieve data using variables

Variables can be used to store data, which can then be retrieved and displayed to end users.

Store data in variables

Action nodes and Prompt nodes can be used to store the data in variables.

Store the response of a node

  1. Click Store Response In option at the bottom of the action/prompt node.
  2. A list of journey/global variables and user properties will be displayed, from which you can choose the appropriate variable to store the user's response.
  3. Select the variable that you want to use and save the changes.

When the bot asks a question and the user responds, the response will be stored in the selected variable, such as name or phone.

note
  1. Only names of the existing variables are displayed on the store response in dropdown.

  2. Create a new variable if you want to add more variables to the dropdown.

  3. Variables can also be stored with the help of a variable node in the flow.

Retrieve data from variables

To retrieve the data stored in a specific variable, you need to fetch the variable in a node and add syntaxes to it .(if it's an array or object).

  1. Add a message node to the respective node.

  2. Fetch the variable that contains the data.

  3. If the data is array/object, you cannoy display them directly. You need to use a syntax to filter out the required data. Refer to the following table for syntaxes to use depending on the data type.

DatatypeSyntax
String{{{variables.variablename}}}
Array{{{variables.variablename.[position of the array].fieldname}}}
JSON Response ArrayStore the object in a variable and then use this syntax to retrieve data from specific fields:{{{variables.variablename.arrayname.[position of the array].field}}} or {{{variables.variablename.fieldname}}}
JSON ObjectStore the object in a variable and then use this syntax to retrieve data from specific fields: {{{variables.variablename.fieldname}}}
note
  • Journey and Global variables get expired after 48 hours of inactivity.

Data types supported by nodes

Different prompts and action nodes return responses in various formats and data types. Refer to the tables below to understand what types of variables can be stored in each node.

Prompt

Prompt NodesVariable Datatype
Namestring
Emailstring
Phonestring
Locationobject
Carouselstring
Quick Repliesstring
Dateobject
Questionstring
Feedbackobject
Whatsapp Liststring
Multiselectstring
Image/filestring

Actions

Action NodesVariable Datatype
APIobject, array, number, string
Database (search)array
Functionobject, array, number, string
Outbound Notificationobject, array, number, string
Notification Statusobject, array, number, string
Raise ticketobject, array, number, string
Modifierobject, array, number, string
Document Searchobject, array, number, string
Set Languageobject, array, number, string
Send OTPobject, array, number, string
Verify OTPobject, array, number, string
Paymentobject, array, number, string
Generate PDFobject, array, number, string