Podscribe

Send conversion events to Podscribe for podcast advertising attribution, listener-level measurement, and cross-platform campaign performance analysis.

Configuration

FieldTypeRequiredDescription
advertiser_idstringYesYour Podscribe advertiser ID. Found in the Podscribe dashboard under Account Settings.
api_keysecretYesAPI key for authenticating server-side event delivery. Generate in the Podscribe dashboard under Settings > API.
pixel_idstringYesYour Podscribe pixel ID for conversion attribution. Found in the Podscribe dashboard under Pixels.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Podscribe 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/podscribe/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Podscribe",
    "variant": "default",
    "config": {
      "advertiser_id": "ps-adv-12345",
      "api_key": "ak_podscribe_abc123...",
      "pixel_id": "ps-px-67890"
    },
    "delivery_mode": "server_side"
  }'

Delivery

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

Visit Podscribe documentation for full API documentation and credential setup instructions.