Skip to main content
POST
/
pipeline
/
with-linked-components
Initialize a pipeline with provided components. The links for all components have to be determined by the caller.
curl --request POST \
  --url https://api.mezmo.com/v3/pipeline/with-linked-components \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sources": [
    {
      "id": "<string>",
      "user_config": {},
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "transforms": [
    {
      "id": "<string>",
      "inputs": [
        "<string>"
      ],
      "user_config": {},
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "sinks": [
    {
      "inputs": [
        "<string>"
      ],
      "user_config": {},
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "origin": "system",
  "pipeline": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>"
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://mezmo-9a59581a-mintlify-926f893d.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your token in the format: Token mytokengoeshere

Body

application/json
sources
object[]
required
Minimum array length: 1
transforms
object[]
required
Minimum array length: 1
sinks
object[]
required
Minimum array length: 1
origin
enum<string>
default:system
Available options:
ui,
system
pipeline
object

Response

200

Default Response