List pipeline jobs - 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 all pipeline job executions with their current status and metadata

HTTP

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

Request

Query parameters

Key Required Type Value Description
page No integer int(32)

Page number.

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

Response

The successful response returns the collection of pipeline job executions with their current status and metadata.

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
Pipeline jobs retrieved successfully.
{
  "items": [
    {
      "id": "38f73530-8948-481a-8a80-7ed51ece5e58",
      "pipelineId": "6853d5dd80b6dd07285dbd8e",
      "pipeline": "Test_Pipeline",
      "runConfigId": "6853d69880b6dd07285dbd8f",
      "runConfigName": "Test_Run_Config",
      "sourceAssetTypePath": "[Host].[Database].[Schema].[Table]",
      "sourceAssetNamePath": "[TestSource].[catalog].[dq].[input]",
      "targetAssetTypePath": null,
      "targetAssetNamePath": null,
      "startTime": 1753859968635,
      "endTime": 1753860182094,
      "duration": 213459,
      "recordsProcessed": 100,
      "status": "SUCCESSFUL",
      "user": "test@abc.com",
      "externalUrl": "https://external-url.com",
      "externalId": "1027355645833034",
      "comment": "",
      "counts": [
        {
          "name": "[TestSource].[catalog].[dq].[input]",
          "type": "input",
          "count": 50
        },
        {
          "name": "[TestSource].[catalog].[dq].[input]",
          "type": "input",
          "count": 50
        }
      ],
      "targetAssets": [
        {
          "assetTypePath": "[Host].[Database].[Schema].[Table]",
          "assetNamePath": "[TestSource].[catalog].[dq].[output]",
          "label": "Output"
        }
      ],
      "sourceAssets": [
        {
          "assetTypePath": "[Host].[Database].[Schema].[Table]",
          "assetNamePath": "[TestSource].[catalog].[dq].[input]",
          "label": "Input"
        }
      ],
      "isScheduled": false
    }
  ],
  "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/jobs",
  "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/jobs",
  "errorCode": "DIS-QUALITY-PIPELINES-SVC-0001"
}