Get pipeline job status - 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 detailed information about a specific pipeline job including status, timing, and processing metrics.

HTTP

GET https://hostname/v1/quality/pipelines/jobs/{jobId}

Request

Path parameters

Key Required Type Value Description
jobId Yes string objectId

The unique identifier of the pipeline job to retrieve.

Example: db93fdcb-00af-4187-80b8-58010f3d16f4

Response

The successful response returns the pipeline job status for the specified job ID.

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 job retrieved successfully.
{
  "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
}
{
  "type": "about:blank",
  "title": "Bad Request",
  "status": 400,
  "detail": "Invalid job id",
  "instance": "/v1/quality/pipelines/jobs/db93fdcb-00af-4187-80b8-58010f3d16f4",
  "errorCode": "DIS-QUALITY-PIPELINES-USR-0005"
}
Pipeline job not found.
{
  "type": "about:blank",
  "title": "Not Found",
  "status": 404,
  "detail": "Pipeline job not found",
  "instance": "/v1/quality/pipelines/jobs/db93fdcb-00af-4187-80b8-58010f3d16f4",
  "errorCode": "DIS-QUALITY-PIPELINES-USR-1003"
}
{
  "type": "about:blank",
  "title": "Internal Server Error",
  "status": 500,
  "detail": "An unexpected error occurred on the server",
  "instance": "/v1/quality/pipelines/jobs/db93fdcb-00af-4187-80b8-58010f3d16f4",
  "errorCode": "DIS-QUALITY-PIPELINES-SVC-0001"
}