Data Hubs

Synchronize workflow and integration data into custom data models

Data Hubs allow you to synchronize workflow and integration data into custom, structured data models. You can create entries through the UI or programmatically via the React library, and perform standard CRUD operations (create, read, update, delete) on your data.

Creating a Data Hub

  1. Navigate to the "Data Hub" tab on the right-hand side of your organization view

  1. Click "Create Data Hub" and enter a name for your new hub.

  1. Configure the fields of thehub in the Data Schema page within Settings

Creating an entry

There are a few ways you can create entries in your data hub.

Manually via UI

  1. Navigate to the "Entries" page within your Data Hub

  2. Click on "Create Entry"

  3. Specify your desired values, and click "Create"

Hub Integrations & Logic

Go to the Integrations or Logic tab of your hub and enable an integration or logic rule to allow periodic, bulk syncing of data to your hub.

Form Advanced Logic

  1. Create or open up a form.

  2. Ensure authentication is enabled on the form.

  3. Create a logic rule and use the dataHubAction method:

Retrieving Data

The Feathery SDK allows you to retrieve data with flexibility.

Getting a specific entry

To get data associated with a specific entry, use the dataHubAction method with the get operation:

This will retrieve all fields associated with this entry.

Getting all entries

To get all entries for a specific Data Hub, simply remove the entryId parameter:

Updating Data

To update an entry, use the update operation:

Deleting Data

To delete an entry, use the delete operation:

Last updated

Was this helpful?