Create Pipeline
Creates a new pipeline in a virtual cluster.
POST /api/v1/create_pipelineRequest Body (JSON):
{
"virtual_cluster_id": "vci_xxx",
"pipeline_name": "my-pipeline"
}CURL Example:
curl https://api.warpstream.com/api/v1/create_pipeline \
-H 'warpstream-api-key: XXXXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{"virtual_cluster_id": "vci_xxx", "pipeline_name": "my-pipeline"}'Response Body (JSON):
{
"pipeline_id": "pipeline-xyz",
"pipeline_name": "my-pipeline",
"pipeline_state": "paused",
"pipeline_type": "bento",
"pipeline_deployed_configuration_id": "" // Initially empty
}Create Orbit Pipeline
Request Body (JSON):
Response Body (JSON):
CURL Example:
Create Schema Linking Pipeline
Request Body (JSON):
Response Body (JSON):
CURL Example:
Last updated
Was this helpful?