Flows
Learn about Flows in Laminar
Last updated
Learn about Flows in Laminar
Last updated
Flows in Laminar are data transformation jobs that handle transformation between APIs.
They can specify a source and destination, and run a jq program for data transformations. Each flow runs as part of a Workflow and has an execution order.
Flows run the following sequence to complete:
Make request on Source API or receive Input data.
Run data transformation on Global Workflow Object.
Make request on Destination API with the resulting data transformation from this flow specifically.
Flows can output Laminar Keywords as part of their transformations to invoke other Workflows.
Field | Type |
---|---|
id
Integer (int64)
name
String
description
String
program
String (jq program)
sourceId
Integer (int64), optional
destinationId
Integer (int64), optional
workflowId
Integer (int64)
executionOrder
Integer (int64)