Getting Started
Build your first integration in less than 15 minutes
Let's build a simple order fulfillment integration. When a new order is placed, it gets automatically sent to a fulfilment centre for processing, and then the order status is updated.
Create a New Workflow
Click "New Workflow"
Name it "Order Fulfillment"
Adding Steps to Workflow
Transforming incoming order data
First up, we'll need to create a new step to convert incoming order schema to fulfillment centre format.
Click "Create New Step"
Name it "Transform incoming order data"
Select preferred language. For this tutorial, we will use Javascript
Click on the icon to select the step type. For this step, we'll keep
Data Transformation
Once the step is created, we can now start adding transformation logic to our step.
Send Order to Fulfillment Centre
Next up, we'll create a new step to send the transformed order data to the fulfillment centre via API.
Click "Create New Step"
Name it "Send Order to Fulfillment Centre"
Click on the icon to select the step type. For this step, we'll select
HTTP Request
We will then write logic for sending order data to fulfillment centre via HTTP Request.
Run your Workflow
We are now ready to test our workflow. We will be using the input below to run our workflow
Provide Test Input (Use test input below)
Click Run Workflow Button
After running your workflow, you'll see a new entry in the workflow executions section:
Overall Status: Success or failure indicator
Step Results: Individual step outputs and execution logs
Data Flow: How data moved between steps
Execution Time: Performance metrics for each step
Now that you've built your first workflow, let's dive deeper into creating more sophisticated integrations. Building effective workflows requires understanding how data flows between steps and mastering the different types of operations you can perform.
Last updated
Was this helpful?