BigID · Example Payload

Bigid List Data Sources Example

Data SecurityDSPMDLPPrivacyAI SecurityData CatalogDSARData DiscoveryCompliance

Bigid List Data Sources Example is an example object payload from BigID, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://tenant.bigid.com/api/v1/ds-connections",
    "headers": {
      "Authorization": "<systemToken>"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": "success",
      "statusCode": 200,
      "data": {
        "ds_connections": [
          {
            "name": "snowflake-prod",
            "type": "snowflake",
            "location": "tenant.snowflakecomputing.com",
            "enabled": "yes",
            "scanner_group": "default"
          },
          {
            "name": "s3-customer-files",
            "type": "s3-v2",
            "location": "s3://customer-files",
            "enabled": "yes",
            "scanner_group": "default"
          }
        ]
      }
    }
  }
}