List all query pipeline versions in a workspace.
GET/api/v1/workspaces/:workspace_name/pipeline/versions
Lists query pipeline versions across all pipelines in the selected workspace. Supports OData filtering, pagination, and sorting. Allowed filter fields: is_draft and pipeline/name. Alias supported: pipeline_name maps to pipeline/name. Default sorting is version_number DESC. Pagination supports limit, before, after, and page_number. before/after cannot be used together, and before/after cannot be combined with page_number. Examples: GET /workspaces/default/pipeline/versions, GET /workspaces/default/pipeline/versions?filter=is_draft%20eq%20true, GET /workspaces/default/pipeline/versions?filter=pipeline/name%20eq%20'my-pipeline', GET /workspaces/default/pipeline/versions?filter=pipeline_name%20eq%20'my-pipeline', GET /workspaces/default/pipeline/versions?field=version_number&order=DESC&limit=20&page_number=1.
Request
Responses
- 200
- 400
- 403
- 404
- 422
Successful Response
Invalid pagination parameters. before and after cannot be used together, and before/after cannot be used with page_number.
The user is not authorized to read pipeline versions in this workspace.
The requested workspace was not found.
Invalid filter expression.
Was this page helpful?