Laminar
  • Laminar
  • Platform
    • Overview
    • Getting Started
    • Advanced
      • Workflows
        • Global Workflow Object
        • HTTP Request Batching
        • Workflow Exit Points
        • Invoke Secondary Workflows
      • Configurations
      • Flows
        • Flow Types
          • HTTP Request
          • Data Transformations
        • Supported Languages
      • Managing Notifications
    • Best Practices
    • Keywords
      • lam.resolveThenExecute
      • lam.exit
      • lam.execute
      • lam.asyncExecute
      • lam.httpRequest
      • lam.httpRequests
  • API
    • Executing a Workflow
    • Creating a Configuration
    • Authentication
    • Changelog
  • External Links
    • Book a Demo
    • Sign In
Powered by GitBook
On this page

Was this helpful?

  1. API

Executing a Workflow

Learn how to execute a Workflow with Laminar's API

Previouslam.httpRequestsNextCreating a Configuration

Last updated 1 day ago

Was this helpful?

Execute Workflow (External)

post

Executes a workflow using external API key authentication

Authorizations
Path parameters
workflowIdstringRequired
Query parameters
api_keystringOptional
configuration_idinteger · int64Optional
response_typestringOptionalDefault: json
Header parameters
X-API-KEYstringOptional
Responses
200
Workflow executed successfully
*/*
Responseobject
400
Execution failed
*/*
401
Unauthorized
*/*
post
POST /workflow/execute/external/{workflowId} HTTP/1.1
Host: api.laminar.run
Accept: */*
{}

Download from External Workflow

get

Downloads binary data from external workflow execution

Authorizations
Path parameters
workflowIdstringRequired
Query parameters
api_keystringOptional
configuration_idinteger · int64Optional
Header parameters
X-API-KEYstringOptional
Responses
200
File downloaded successfully
*/*
Responseobject
400
No binary data available
*/*
401
Unauthorized
*/*
get
GET /workflow/execute/external/{workflowId}/download HTTP/1.1
Host: api.laminar.run
Accept: */*
{}
  • POSTExecute Workflow (External)
  • GETDownload from External Workflow