Creating a Configuration

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

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
externalIdstringRequired
Responses
201
Configuration store created successfully
*/*
post
POST /configurations/external HTTP/1.1
Host: api.laminar.run
Content-Type: application/json
Accept: */*
Content-Length: 96

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

Configuration store created successfully

{
  "id": 1,
  "workspaceId": 1,
  "name": "text",
  "externalId": "text",
  "archivedAt": "2025-06-27T08:34:35.823Z",
  "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"
    }
  ]
}

Last updated

Was this helpful?