Retrieves a paginated list of pipelines.
Request
Query parameters
| Key | Required | Type | Value | Description |
|---|---|---|---|---|
| page | No | integer | integer($int32) |
Page number.
|
| limit | No | integer | integer($int32) |
Number of items per page.
|
Response
The successful response returns the collection of available pipelines.
Response body
Example status code responses for this method are shown here. To view the response schemas, you can download the Data Quality Open API Specification from the Precisely Developer Portal.
{
"items": [
{
"id": "67e259257f3a733215481765",
"name": "Test_Pipeline_Name",
"sourceAssetTypePath": "[Host].[Database].[Schema].[Table]",
"sourceAssetNamePath": "[TestSource].[test_catalog].[dq].[test_table]",
"lastModifiedBy": "abc@precisely.com",
"lastModifiedDate": "2025-08-21T04:24:20.356Z",
"error": false,
"validationStatus": true,
"inputStepCount": 1
}
],
"pageSize": 10,
"currentPage": 1,
"totalItems": 1,
"totalPages": 1
}{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "Page number must be greater than or equal to 1",
"instance": "/v1/quality/pipelines",
"errorCode": "DIS-QUALITY-PIPELINES-USR-0001"
}{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "An unexpected error occurred on the server",
"instance": "/v1/quality/pipelines",
"errorCode": "DIS-QUALITY-PIPELINES-SVC-0001"
}