How to ask users for information and memorize them with Workflows
This article explains how to ask users for information in a workflow and store their answers as memorized values.
Memorized values let a workflow reuse what the user submitted later in the flow. This is useful for details such as an email address, nickname, order number, request type, or any other value you want to insert into messages, conditions, or profile updates.
Creating Input Fields in our Workflow
Inside of your workflow, you can open the Block Drawer from the left to drag a new Action block "Send Message: Field Input" and start configuring the field you'll want to implement in your flow.
You will then need to add an Event block "Button/Field Action" in order to validate and detect when the user submit the information he entered. You can use the value * to accept any information submitted.
You may also want to save the data provided by the user inside your conversation. To do so, you can thereafter use an Action block of the category "Update User".
Let's see an example right away to illustrate the setup!

Let's now review the details of the configuration:
- This allows you to add more translations to your field, which will be displayed accordingly based on their language preferences. The "default locale" will be the default one if the user's language doesn't match one of the additional locale you configured.
- The message attached to your field input message, such as a question for instance.
- The placeholder allows you to display an example of what sort of information users should enter.
- This option can be toggled to turn a field mandatory. This means that the user will not be able to send message until the field has been completed and submitted.
- The type of "action" we want to detect. In our case, this is a "Field Fill".
- The Match value determines which value we expect our users to submit. In most cases, since we want them to be able to enter whichever information we require, we can use the wildcard
*to accept any entry. - Whether or not we want to memorize the value submitted by the user, which is then configured in step 8
- Allows you to memorize the value of that button inside of a key, which you can later use as a variable inside of a message, or to update a user's information. This is especially useful with input field to then that information in the conversation. If the option on step 7 was toggled, simply name the "key" in which the value will be stored (it can be anything you want)
- This option allows us to choose which value we want to set:
- Static (which we preset ourselves and will be the same for all users when that block is executed)
- From Workflow Memory, which allows us to use a variable, meaning that we will use a value that was previously memorized during our workflow.
- Depending if you've chosen "static" or "from workflow memory" in step 9, you will need to specify either:
- The Static value you wish to set
- The variable "key" which contains the information the user submitted in our field, which was memorized during the step 7 and 8 of our Event block
nickname, you can then output in a message such as `Glad to meet you {{nickname}}`And voilà ! Your list of button choices is now ready! You can try these directly from the "Test" area of the Workflow Editor. 💬
Updated on: 04/05/2026
Thank you!