v1

latestOpenAPI 3.0.3Apache 2.02026-07-178913.4 KB
flows
connectors

change the status of a connector

patch/v1/flows/{flow-id}/connectors/{connector-id}

Request body

status'running' | 'paused' required

Valid statusses flows and connectors can be switched to

Example request

{
  "status": "paused"
}

Response

The new status of the connector after the patch

aliasstring required
status'initializing' | 'running' | 'paused' | 'draining' | 'stopped' | 'failed' required

runtime status of a flow or connector instance

connectivity'connected' | 'disconnected' required

denoting whether this connector is connected to its external system

pipelinesobject required

Example response

{
  "alias": "foo",
  "status": "running",
  "connectivity": "connected",
  "pipelines": {
    "out": [
      {
        "alias": "pass",
        "port": "in"
      }
    ]
  }
}