Method
listPipelines GET
Copy GET

Lists the pipelines for an organization or a project

Arguments:

REQUIRED KEY TYPE DESCRIPTION
No projectId str Unique string identifier for the project to list graph dashboards from.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result list[Pipeline]

Exceptions:

TYPE WHEN
DataNotFoundError

projectId is not found.

Language:

python

Request
client.list_pipelines()

Response
[
    Pipeline(
        created_at='2023-04-13T15:39:55+00:00',
        pipeline_id='c277bc341',
        pipeline_name='test_pipeline',
    )
]