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>"
]
},
"tags": [
"<string>"
],
"transforms": [
{
"topic_id": "<string>"
}
],
"periodic_audit": {
"topics": [
"<string>"
],
"timestamp_column": "<string>",
"interval_minutes": 123
}
}
'