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