PUT
/
pipelines
/
{pipeline_id}
Update Existing Pipeline
curl --request PUT \
  --url https://api.streamkap.com/pipelines/{pipeline_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "destination": {
    "connector": "<string>",
    "name": "<string>",
    "id": "<string>"
  },
  "source": {
    "connector": "<string>",
    "name": "<string>",
    "id": "<string>",
    "topics": [
      "<string>"
    ]
  },
  "transforms": [
    {
      "topic_id": "<string>"
    }
  ],
  "tags": [
    "<string>"
  ],
  "periodic_audit": {
    "topics": [
      "<string>"
    ],
    "timestamp_column": "<string>",
    "interval_minutes": 123
  }
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

pipeline_id
string | null
required

Query Parameters

secret_returned
boolean
default:false

Body

application/json
name
string
required
destination
object
required
source
object
required
tags
string[]
required
transforms
PipelineTransformConnector · object[] | null
periodic_audit
object | null

Update pipeline audit request.

Response

Successful Response

The response is of type any.