Settings
v1

Get Data Processing Settings

Returns the current "Allow third-party providers" state for the account and its full change history, ordered most-recent-first. Each changelog entry records what was set, who set it, and when.

:::info Requires the accounts:read OAuth2 scope. :::

get/v1/settings/data-processing

Query parameters

account_idstring required

The Leadfeeder Account ID. The Account ID can be retrieved using the List Accounts endpoint.

Response

Data processing settings

Example response

{
  "data": {
    "type": "data_processing_settings",
    "id": "123456",
    "attributes": {
      "enabled": true,
      "changelog": [
        {
          "enabled": true,
          "changed_by_email": "jane.smith@example.com",
          "changed_by_name": "Jane Smith",
          "changed_at": "2026-06-01T12:00:00Z"
        }
      ]
    }
  },
  "meta": {
    "request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
  }
}

Changes