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

Creating a Configuration

Learn how to execute a Create a Configuration with Laminar's API

PreviousExecuting a WorkflowNextAuthentication

Last updated 3 days ago

Was this helpful?

Create Configuration Store (External)

post

Creates a new configuration store via external API key authentication

Authorizations
Query parameters
api_keystringOptional
Header parameters
X-API-KEYstringOptional
Body
workspaceIdinteger ยท int64Required
namestringRequired
Responses
201
Configuration store created successfully
*/*
post
POST /configurations/external HTTP/1.1
Host: api.laminar.run
Content-Type: application/json
Accept: */*
Content-Length: 76

{
  "workspaceId": 1,
  "name": "text",
  "properties": [
    {
      "key": "text",
      "value": "text"
    }
  ]
}
201

Configuration store created successfully

{
  "id": 1,
  "workspaceId": 1,
  "name": "text",
  "flowCredentialPairs": [
    {
      "id": 1,
      "flowId": 1,
      "sourceAuthCredential": {
        "id": 1,
        "name": "text",
        "authType": "text"
      },
      "destinationAuthCredential": {
        "id": 1,
        "name": "text",
        "authType": "text"
      }
    }
  ],
  "properties": [
    {
      "id": 1,
      "key": "text",
      "value": "text"
    }
  ]
}