Remote Workflow Execution

Laminar allows you to trigger workflows via a unique API execution link. This enables seamless integration of Laminar workflows into your existing applications, scripts, or CI/CD pipelines.

You can find the execution URL in the workflow editor controls:

  1. Locate textbox under TRIGGER URL & SCHEDULES at the top right of the editor

  2. Click the copy button to copy the execution link.

Once you have the link, follow the API spec below to make your HTTP Request.

Execute Workflow (External)

post

Executes a workflow using external API key authentication

Authorizations
Path parameters
workflowIdstringRequired
Query parameters
api_keystringOptional
configuration_idstringOptional
response_typestringOptionalDefault: json
Header parameters
X-API-KEYstringOptional
Body
stringOptional
Responses
200
Workflow executed successfully
*/*
Responseobject
post
POST /workflow/execute/external/{workflowId} HTTP/1.1
Host: api.laminar.run
Content-Type: */*
Accept: */*
Content-Length: 6

"text"
{}

Last updated

Was this helpful?