List available pipelines - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

Retrieves a paginated list of pipelines.

HTTP

GET https://hostname/v1/quality/pipelines

Request

Query parameters

Key Required Type Value Description
page No integer integer($int32)

Page number.

  • Minimum: 1
  • Default: 1
limit No integer integer($int32)
Number of items per page.
  • Minimum: 1
  • Maximum: 200
  • Default: 10

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.

Examples
{
  "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"
}