Lists the pipelines for an organization or a project
REQUIRED | KEY | TYPE | DESCRIPTION |
---|---|---|---|
No | projectId | str | Unique string identifier for the project to list graph dashboards from. |
KEY | TYPE | DESCRIPTION |
---|---|---|
success | Boolean | true if the call succeeded, false if there was an error |
result | list[Pipeline] |
TYPE | WHEN |
---|---|
DataNotFoundError |
|
curl
curl "https://api.abacus.ai/api/v0/listPipelines" \
-X GET \
-H "apiKey:**********c74043986d6087446810a1"
{
'success': true,
'result': {
[
{'createdAt': datetime.datetime(2023, 4, 13, 15, 39, 55, tzinfo=datetime.timezone.utc),
'pipelineId': 'c277bc341',
'pipelineName': 'test_pipeline',}
]
}
}
python
client.list_pipelines()
[
Pipeline(
created_at='2023-04-13T15:39:55+00:00',
pipeline_id='c277bc341',
pipeline_name='test_pipeline',
)
]