Data ScanningScan Details

Scan Details

Fetch column-level PII detection results with ML confidence scores for a scanned data source object.

{
  "data": {
    "data_source_name": "salesforce",
    "object_name": ["CustomerDB", "MarketingSchema", "CustomersTable"]
  },
  "next_page_token": null
}
{
  "data": [
    {
      "column_name": "CustomerID",
      "values_scanned": 250,
      "ml_identified_pi_details": [
        {
          "pi_type": "PERSON",
          "identified_percentage": 20
        }
      ]
    },
    {
      "column_name": "email",
      "values_scanned": 250,
      "ml_identified_pi_details": [
        {
          "pi_type": "EMAIL_ADDRESS",
          "identified_percentage": 98
        }
      ]
    }
  ],
  "next_page_token": null,
  "success": true,
  "error": { "message": "" }
}

Fetches detailed PII detection results at the column level for a scanned object.

Endpoint

MethodEndpoint
PUThttps://<domain>/api/vault/data-scan/objects/details

Response fields

column_namestring
Required

Name of the scanned column.

values_scannedinteger
Required

Number of values analyzed from this column.

ml_identified_pi_detailsarray
Required

ML detection results for this column.

next_page_tokenstring

Token for paginating large result sets. null when no more results.

Interpreting confidence scores

Confidence rangeInterpretation
90–100%High confidence — column almost certainly contains this PII type
60–89%Moderate confidence — likely contains this PII type
30–59%Low confidence — may contain this PII type, manual review recommended
Below 30%Very low — likely a false positive

Use the Update Scan Conclusions API to set the threshold at which a column is officially classified as PII.