company logo

Help center

Go to Stackby
Stackby BlogStackby CommunityStackby YouTube ChannelStackby Facebook GroupSign up for Free
All collectionsStackby Apps MarketplaceData flow App

Data flow App

The Data Flow app helps you visualize how data and relationships are connected across your Stackby base.

Data Flow in Stackby helps you visualize how data moves between different tables, columns, and connected records. It provides a clear view of relationships and dependencies within your Stack, making it easier to understand how your data is connected.

How to add data flow app in stackby

  1. Go to your Stack in Stackby

  2. Open the required table or workspace

  3. Click on “Tools” and Select “Apps” (available in the top-right corner or sidebar)

  4. To use the Data Flow app, you need an account on Data Flow

  5. Go to dataflow.com and create an account (if not already created)

  6. Return to Stackby

  7. Enter your Data Flow account credentials

  8. Click on “Sign In”

Create a New Request

  1. Open DataFlow app from your Apps section.

  2. Click the “Create your first request” button.

  3. You will be taken to the request configuration page.

Request Configuration Screen

This is where you define how the API call should work.

1.Method:

The Method defines what action you want the API to perform.

Most used options:

GET → Fetch data

POST → Create/send data

2.URL:

The URL is the API endpoint from which Stackby will pull the data.

Example: https://api.app.com/v1/users

3.Parameters:

Parameters are query values added to refine the response.

Examples:

  • limit number of records

  • filter by status

  • select date ranges

Click + Add to include multiple parameters.


4.Headers:

Headers pass extra metadata with the request.

Common examples:

Content-Type: application/json`

Accept: application/json`

5.Body:

Used mostly with POST / PUT / PATCH. This is where you send data to the server in JSON or other formats.

For GET requests, this is typically empty.

Example:

json

{

  "title": "New Task"

}

6.Authorization:

If the API is private, authentication is required.

Common options:

API Key

Bearer Token

Basic Auth

OAuth


Without authorization, the request may return errors like 401 Unauthorized.

7. Output Table & View

Here you choose:

* The table where data will be stored

* The view where results will appear

This ensures the records land exactly where you want them.


8.Schedule / Trigger / Webhook

You can automate the import.

Schedule → Run automatically at fixed intervals

Trigger → Run from automation

Webhook URL → External services can start the fetch

9.Advanced Settings – Write Mode

Determines how Stackby handles incoming records.

Append: Adds new rows without touching existing ones.

Update: Updates existing records based on matching conditions to avoid duplicates.

10.Save & Run

After setup:

1. Click Save & Run.

2. Data will be fetched from the API.

3. Visit the selected table to verify.

Use Run History to debug failures.



Did this answer your question?
😞
😐
😁