Scores query response view - Precisely_Data_Integrity_Suite - Data_Quality - dis_core_foundation

Quality APIs

Product type
Software
Portfolio
Integrate
Enrich
Product family
Precisely Data Integrity Suite
Product
Precisely Data Integrity Suite > Data Quality
ft:locale
en-US
ft:title
Quality APIs
Copyright
2026
First publish date
2023
ft:lastEdition
2026-08-27
ft:lastPublication
2026-08-27T12:09:30.578000
L1_Product_Gateway
Verify
L2_Product_Segment
Data Quality
L3_Product_Brand
Precisely Data Integrity Suite
L4_Investment_Segment
Suite Verify
L5_Product_Group
Data Quality
L6_Product_Name
Suite Data Quality

The paginated response returned when querying quality scores through the v2 endpoint. Contains a page of ScoreItem entries along with total item count and page metadata. In latest mode, the response contains a single item representing the most recent score. In history mode, items are sorted by effective date ascending and may span multiple pages.

Referenced by: GET /v2/quality/scores/{assetId}

Sorting

Property Description
currentPage The page number of the scores in this response.
pageSize The number of scores returned per page.

Pagination

Property Description
totalPages The total number of pages available given the requested page size.

Parameters

Property Description
items The page of quality score records for the requested asset and date range.
totalItems The total number of score records available across all pages.

JSON Example


{
  "items": [
    {
      "assetId": "68c289f1c78ac464af9a3fd0",
      "dimensionId": "66ac9fe6091f80486b23249c",
      "score": 0.88,
      "scoreBand": [{ "label": "Good", "color": "green", "minimumValue": 0.8 }],
      "effectiveDate": "2024-03-01"
    }
  ],
  "totalItems": 1,
  "totalPages": 1,
  "currentPage": 1,
  "pageSize": 10
}