Data ScanningList Scan Objects

List Scan Objects

List objects available for scanning under a data source — filter by database, schema, or list all objects.

{
  "data": {
    "data_source_name": "salesforce",
    "object_name": ["CustomerDB"]
  }
}
{
  "data": [
    {
      "data_source_name": "salesforce",
      "objects": [
        ["CustomerDB", "MarketingSchema", "CustomersTable"],
        ["CustomerDB", "AnalyticsSchema", "CustomerAnalyticsTable"]
      ]
    }
  ],
  "success": true,
  "error": { "message": "" }
}

Lists objects available for scanning under a data source. Use this to explore the data source hierarchy before or after scanning.

Endpoint

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

Filtering options

Use caseobject_name value
List all objectsNot provided
Filter by database["CustomerDB"]
Filter by schema["CustomerDB", "MarketingSchema"]

Notes

  • Each element in objects is a fully qualified path array: [database, schema, table]
  • Use these paths directly as the object_name in scan requests
  • Omit object_name entirely to list all available objects across the data source