Get profile run information of a job - 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

Fetches the profile run information of a jobId.

HTML

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

Request

Path parameters

Key Required Type Description
jobId Yes string

Profile Job ID.

Response

The successful response returns the profile run information of a job ID.

Response body properties

Ancestors Property Required Type Description
  runInfo No object  
runInfo taskId No string  
runInfo taskType No string  
runInfo childTaskIds No array[string]  
runInfo startDate No string  
runInfo endDate No string  
runInfo status No string  
runInfo comments No array[string]  
runInfo childTaskInfo No array  
runInfo/childTaskInfo taskId No string  
runInfo/childTaskInfo taskType No string  
runInfo/childTaskInfo parentTaskIds No array[string]  
runInfo/childTaskInfo childTaskIds No array[string]  
runInfo/childTaskInfo startDate No string  
runInfo/childTaskInfo endDate No string  
runInfo/childTaskInfo status No string  
runInfo/childTaskInfo comments No array[string]  

Response examples

Example status code responses for this method are shown here.

Examples

Job found and details returned successfully.

{
  "taskId": "a1b2c3d4-1234-5678-9abc-def012345678",
  "taskType": "measurement_request_task",
  "childTaskIds": [
    "e2f3a4b5-2345-6789-abcd-ef1234567890",
    "b3c4d5e6-3456-789a-bcde-f23456789012",
    "c4d5e6f7-4567-89ab-cdef-345678901234"
  ],
  "startDate": "2025-11-13T07:13:09.267Z",
  "endDate": "2025-11-13T07:22:28.39Z",
  "status": "SUCCESSFUL",
  "comments": [],
  "childTaskInfo": [
    {
      "taskId": "e2f3a4b5-2345-6789-abcd-ef1234567890",
      "taskType": "PROFILE",
      "parentTaskIds": [
        "a1b2c3d4-1234-5678-9abc-def012345678"
      ],
      "childTaskIds": [
        "d5e6f7a8-5678-9abc-def0-456789012345",
        "e6f7a8b9-6789-abcd-ef01-567890123456"
      ],
      "startDate": "2025-11-13T07:13:09.278Z",
      "endDate": "2025-11-13T07:22:28.359Z",
      "status": "SUCCESSFUL",
      "comments": []
    },
    {
      "taskId": "c4d5e6f7-4567-89ab-cdef-345678901234",
      "taskType": "pipeline_execution_task",
      "parentTaskIds": [
        "a1b2c3d4-1234-5678-9abc-def012345678"
      ],
      "startDate": "2025-11-13T07:13:09.351Z",
      "endDate": "2025-11-13T07:22:28.343Z",
      "status": "SUCCESSFUL"
    },
    {
      "taskId": "b3c4d5e6-3456-789a-bcde-f23456789012",
      "taskType": "schema_drift_task",
      "parentTaskIds": [
        "a1b2c3d4-1234-5678-9abc-def012345678"
      ],
      "startDate": "2025-11-13T07:13:09.39Z",
      "endDate": "2025-11-13T07:13:09.655Z",
      "status": "SUCCESSFUL",
      "comments": []
    }
  ]
}
{
"type":"about:blank",
"title":"Bad Request",
"status":"400",
"detail":"Invalid or malformed request",
"instance":"https://verify-api-portal-dev.dqcore.cloud.precisely.services/v1/quality/profiles/jobs/a1b2c3d4-1234-5678-9abc-def012345678",
"errorCode":"DIS-QUALITY-PROFILE-USR-2003"
}
{
"type":"about:blank",
"title":"Not Found",
"status":"404",
"detail":"Profile execution job not found",
"instance":"https://verify-api-portal-dev.dqcore.cloud.precisely.services/v1/quality/profiles/jobs/a1b2c3d4-1234-5678-9abc-def012345678",
"errorCode":"DIS-QUALITY-PROFILE-USR-1003"
}
{
"type":"about:blank",
"title":"Internal Server Error",
"status":"500",
"detail":"An unexpected error occurred on the server",
"instance":"https://verify-api-portal-dev.dqcore.cloud.precisely.services/v1/quality/profiles/jobs/a1b2c3d4-1234-5678-9abc-def012345678",
"errorCode":"DIS-QUALITY-PROFILE-SVC-0001"
}