Code0 LogoCodeZero

Quick - Creating your first flow

We will build a simple flow that listens for a GET request and immediately answers back with a classic pong.


Kickstart a new flow

Let's begin by creating a fresh canvas. Click the create button to get started.

CodeZero

Set the trigger type to REST Endpoint, give your flow a memorable name, and hit create to open up your new workspace.

CodeZero

Access the node settings

Locate and open your newly created flow from the explorer list.

CodeZero

Click on the Starting Node to highlight it. Then, take a look at the right-hand side of your screen and open up the Node Settings panel. This is where the magic configuration happens.

CodeZero

Form here we can start setting up our starting node.

CodeZero

Configure your endpoint & logic

First, let's define the data type. Click on the variable (x) icon and select text/plain from the list.

CodeZero

Next, let's give your flow an address. Type a clean path like /ping into the URL endpoint field.

💡 What is a URL endpoint? This acts as the unique web path for your flow. When combined with your specific project slug, it forms the full web address you will use to trigger this logic.

CodeZero

Choose the GET method from the dropdown menu. We are using GET for this project so you can easily test and preview the results right inside your favorite web browser.

CodeZero

Set the incoming input schema to Data Value to keep the format simple and clean.

CodeZero

Add a responde node

Now, let's add some action! Open up the Node Menu to browse available blocks.

CodeZero

Type Respond into the search bar and select the corresponding node to add it to your workflow canvas.

CodeZero

Click on the newly placed Respond node to configure.

CodeZero

Let's tell the client everything went smoothly. Set the Status Code to 200 (the standard HTTP code for "OK").

CodeZero

Just like before, use the (x) variable icon to set the response content type to text/plain.

CodeZero

Type the word pong into the content field. This is the exact text payload that will be sent back to the user.

CodeZero

Don't lose your progress! Click the Save button in the toolbar.

CodeZero

Try out your flow

Time to test it out! Click on the Play button and copy the resulting HTTP URL to your clipboard.

CodeZero

Finally, paste the copied link into a new browser tab. If you are developing locally, feel free to adjust the IP address or host if needed. Hit enter, and watch your flow instantly reply with pong!

CodeZero


What are my next steps?

Congratulations on deploying your very first endpoint! Now that you know how to receive a request and send a basic response, you can try passing dynamic data variables or adding conditional logic nodes to make your flow even smarter.

On this page