> For the complete documentation index, see [llms.txt](https://help.flochat.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.flochat.ai/flow-builder/sub-flows/workflow.md).

# Workflow

A workflow can be considered as a backend flow where you can automate tasks such as adding or removing tags, set custom field variables, do external API calls.

This way the conversation you have with the subscriber will not be affected by needing to wait to apply all those actions and the experience is as smooth as possible for that end-user.

### Create Workflow <a href="#create-workflow" id="create-workflow"></a>

<figure><img src="/files/1fsTr67jUpJp6o3bGmpU" alt=""><figcaption></figcaption></figure>

To create a workflow just go to the flow overview by selecting **Flows** from the left-hand menu.

Then press the button **+ New Sub Flow**

Select the workflow flow type then give it a name. Once done press the button Create to start creating your workflow.

Once you create your flow and you end up in the flow builder you will notice that you will have access to fewer blocks than when selecting a regular or function flow.

Available blocks are:

* Action
* Condition
* Split
* Send Email

As mentioned this flow is meant to create a backend flow that you can trigger from any other flow inside your chatbot to handle system tasks like adding tags, set custom fields, but also sending emails.

<figure><img src="/files/mmy4bxnIdUmAauVcdYHs" alt=""><figcaption></figcaption></figure>

### Workflow Example <a href="#workflow-example" id="workflow-example"></a>

Let’s take an example of how a workflow can be used.

A user signs up with an email and or phone number and you want to sync this information with your CRM platform of choice.

So soon as you grabbed the credentials from the user you can make an API call using the external request block inside of the action module.

You would also want to tag the user inside the chatbot for completing the onboarding step. After done we send an email notification to an admin that a new lead has been created to follow up on.

A workflow can then look something like this;

<figure><img src="/files/Aj8kdHjhHmxq0oDmIscN" alt=""><figcaption></figcaption></figure>

If you were to incorporate this into the flow that has the actual conversation it might become an issue as the conversation could be on hold for several seconds or more to finish all these system processes. And you might lose the user as he or she thinks the conversation is done.

### Trigger Workflow <a href="#trigger-workflow" id="trigger-workflow"></a>

It is very simple to trigger the above workflow inside of any other flow that you build.

Just insert an action block, go to *advanced actions*, then choose *trigger workflow* at the bottom

<figure><img src="/files/9uByW0Y3AShmvcFaEFao" alt=""><figcaption></figcaption></figure>

You can then select any workflow you created. This workflow will then be processed in the backend while the conversation with the user will not be affected and continue without any delay.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.flochat.ai/flow-builder/sub-flows/workflow.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
