Running an Integration
Learn how to run a workflow in Laminar
Building workflows
Laminar makes it easy to build and maintain integrations by breaking them down into the following sequence of tasks:
Describe API endpoints that need to be connected
Create necessary workflows for the APIs being integrated
Describe data transformations, control flow and API requests in flows that run in sequence as part of workflows
Execute workflows by calling Laminar's API and complete your integrations without needing to write custom code.
Additionally:
Debug failing workflows with flow runs
Try individual parts of an integration with Laminar's editor
Test data transformations on Laminar's playground
Receive notifications for critical integration failures
Configure retry mechanisms for workflows
Executing a workflow
All executions of workflows are done by making a POST request to the /workflow/execute/external endpoint.
Workflows can optionally be passed a body via this POST request as input data for an execution which will be available to each flow under the .input
key.
An API key is required to have been generated for the executing workspace and should be provided either via the X-API-KEY
header, or via the api_key
query parameter.
Last updated