Nextdoor CAPI
Send conversion events to Nextdoor via the Conversions API for enhanced local advertising attribution and privacy-safe campaign measurement.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
advertiser_id | string | Yes | Your Nextdoor advertiser ID. Found in the Nextdoor Ads Manager under Account Settings. |
access_token | secret | Yes | Nextdoor CAPI access token with conversion write permissions. Generate in the Nextdoor developer portal. |
conversion_id | string | Yes | The conversion event ID configured in Nextdoor Ads Manager under Events Manager > Conversions. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Nextdoor CAPI or filter by Advertising.
- Click Install, select a variant if available, and fill in the required fields.
- 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.