In Kondado, Parent Pipelines are the types of Pipelines that can be created from each type of source.
They should not be confused with Pipelines themselves, since Parent Pipelines represent the step prior to creating a Pipeline — every Pipeline has an associated Pipeline type (Parent Pipeline).
List Available Pipeline Types for Creation
Description
Lists the available Pipeline types for a given source type (Parent Collection) that the token user is allowed to create.
This endpoint requires the source type ID (parent_collection_id), which can be obtained through the Parent Collections endpoint.
Method
GET
Endpoint
/parent_collections/src/:parent_collection_id/parent_pipelines
URL Parameters
None
Example Response
{
"success": true,
"data": [
{
"id": 92,
"parent_collection_name": "ClickUp",
"parent_pipelines": [
{
"id": 290,
"createdAt": "2021-02-24T20:46:14.950Z",
"updatedAt": "2021-02-24T20:46:14.950Z",
"parent_pipeline_name": "Tasks",
"is_billable": true
},
{
"id": 289,
"createdAt": "2021-02-24T14:40:36.552Z",
"updatedAt": "2021-02-24T14:40:36.552Z",
"parent_pipeline_name": "Folders",
"is_billable": true
},
{
"id": 284,
"createdAt": "2021-02-09T19:32:45.828Z",
"updatedAt": "2021-02-09T19:32:45.828Z",
"parent_pipeline_name": "Spaces",
"is_billable": true
}
]
}
]
}
Response Description
The response will contain data from the Parent Collection (id and parent_collection_name) and an array of JSON objects representing the Parent Pipelines found, with the following fields:
id
Parent Pipeline ID
createdAt
Record creation date
updatedAt
Record last update date
parent_pipeline_name
Pipeline type name
is_billable
Indicates whether this Pipeline type is billable or free
List Parent Pipelines via API
Use Kondado's API to discover available Pipeline types for a given source before creating a new Pipeline.
Obtain the Parent Collection ID
First, call the Parent Collections endpoint to retrieve the source type ID (parent_collection_id) for your desired source, such as ClickUp or any other data integration connector.
Call the Parent Pipelines endpoint
Make a GET request to /parent_collections/src/:parent_collection_id/parent_pipelines, replacing the parameter with your source type ID obtained in the previous step.
Parse the response data
Extract the parent_pipelines array from the JSON response. Each object contains the parent_pipeline_name (e.g., Tasks, Folders, Spaces), id, and is_billable flag indicating whether the Pipeline type is free or billable.
Select your Pipeline type
Review the available Pipeline types and note the id of your chosen Parent Pipeline. Use this ID when creating your actual Pipeline through the API or Kondado platform.