Retrieves a paginated list of all pipeline job executions with their current status and metadata
Request
Query parameters
| Key | Required | Type | Value | Description |
|---|---|---|---|---|
| page | No | integer | int(32) |
Page number.
|
| limit | No | integer | int(32) |
Number of items per page.
|
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.
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"
}