Nextdoor CAPI

Send conversion events to Nextdoor via the Conversions API for enhanced local advertising attribution and privacy-safe campaign measurement.

Configuration

FieldTypeRequiredDescription
advertiser_idstringYesYour Nextdoor advertiser ID. Found in the Nextdoor Ads Manager under Account Settings.
access_tokensecretYesNextdoor CAPI access token with conversion write permissions. Generate in the Nextdoor developer portal.
conversion_idstringYesThe conversion event ID configured in Nextdoor Ads Manager under Events Manager > Conversions.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Nextdoor CAPI or filter by Advertising.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. Click Install Integration to create the integration with a ready-to-use default configuration.

API Setup

curl -X POST http://localhost:8084/v1/admin/integration-catalog/nextdoor_capi/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Nextdoor CAPI",
    "variant": "default",
    "config": {
      "advertiser_id": "nd-adv-12345",
      "access_token": "ndat_abc123...",
      "conversion_id": "nd-conv-98765"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to the Nextdoor CAPI. No client-side scripts are loaded for this integration.

Visit Nextdoor CAPI documentation for full API documentation and credential setup instructions.