Select spec version:

HubSpot Destination Config Reference Beta

Complete Rudder CLI reference for the HubSpot destination config keys, API versions, custom behavioral events, device mode, and secrets.
Available Plans
  • free
  • growth
  • enterprise

HubSpot is a CRM and marketing destination. RudderStack creates and updates contacts from identify calls and records track events, from its servers or — for web sources — through HubSpot’s own script in device mode.

In a HubSpot destination spec:

  • type: hs
  • definition_version: 1

Sample configuration

yaml
version: rudder/v1
kind: destination
metadata:
  name: hubspot-prod
spec:
  id: hubspot-prod
  display_name: HubSpot Production
  type: hs
  definition_version: 1
  enabled: true
  config:
    api_version: newApi
    access_token: "{{ .HUBSPOT_ACCESS_TOKEN }}"
    hub_id: "{{ .HUBSPOT_HUB_ID }}"
    lookup_field: email
    do_association: false

    hubspot_events:
      - rs_event_name: Order Completed
        hubspot_event_name: pe12345_order_completed
        event_properties:
          - from: revenue
            to: order_value

    connection_mode:
      web: cloud
      cloud: cloud
    consent_management:
      web:
        - provider: oneTrust
          consents:
            - marketing

The above example uses the new API with email as the upsert key, and connects web sources in cloud mode, so it omits event_filtering — see Event filtering.

Config keys

config accepts only the keys listed below. The shared config key rules cover unknown keys, defaults, and immutability.

In cloud mode HubSpot accepts identify and track events. In device mode, web sources also send page.

Connection

api_version

Required

Type: string

Description: HubSpot API that RudderStack writes through.

Notes:

  • newApi — HubSpot’s v3 API. Use this one.
  • legacyApi — HubSpot’s v1 API, which HubSpot has deprecated. It updates contacts only by email.
  • The dashboard defaults this field to newApi. Rudder CLI requires it explicitly.
  • A spec that omits this key fails validation.

access_token

RequiredSecret

Type: string

Description: Access token of your HubSpot private app. Used by both API versions.

Notes:

  • At most 100 characters, and must not contain line breaks.
  • Templates aren’t accepted in place of a literal; a template is measured as text against the same limit.

Supply it as a {{ .VAR }} reference rather than a literal — see Secrets.

See Where can I find the HubSpot access token?.

hub_id

Secret

Type: string

Description: Your HubSpot Hub ID, shown under your account name in HubSpot.

Notes:

  • At most 100 characters, and must not contain line breaks.
  • A {{ path || fallback }} template is accepted in place of a literal.

New API settings

These keys apply when api_version is newApi.

lookup_field

Required

Type: string

Description: HubSpot contact property RudderStack matches on to upsert contacts — for example email. Pass the same property, with the value to match, in the identify event’s traits.

Notes:

  • Required when api_version is newApi. Leave it unset otherwise.
  • At most 100 characters, and must not contain line breaks.
  • A {{ path || fallback }} template is accepted in place of a literal.
Use a property that’s unique in HubSpot. Unique properties enable batch upsert, which is much faster; non-unique ones fall back to a slower search-based flow.

do_association

Type: boolean

Default value: false

Description: Create associations between object records. This is used with Reverse ETL sources.

Notes:

  • Applies when api_version is newApi. Leave it unset otherwise.

hubspot_events

Type: array of objects

Description: Maps RudderStack track events to HubSpot custom behavioral events, with optional property mappings.

Notes:

  • Applies when api_version is newApi. Leave it unset otherwise.
  • rs_event_name — RudderStack event name.
  • hubspot_event_name — internal name of the HubSpot custom behavioral event.
  • event_properties — array of from (RudderStack property) and to (HubSpot property) pairs.
  • Every string is at most 100 characters, or a {{ path || fallback }} template.
yaml
hubspot_events:
  - rs_event_name: Order Completed
    hubspot_event_name: pe12345_order_completed
    event_properties:
      - from: revenue
        to: order_value

See Custom behavioral events.

Event filtering

Client-side event filtering applies only when connection_mode.web is device — the dashboard shows these controls only then, and the SDK is what applies the filter. Rudder CLI accepts the block in any mode, but events sent in cloud mode reach HubSpot unfiltered.

event_filtering

Type: object

Description: Restricts which track events the SDK passes to HubSpot’s script, by event name.

Notes:

  • Applies when connection_mode.web is device. Leave it unset otherwise.
  • whitelist — array of event names to allow; every other track event is dropped.
  • blacklist — array of event names to drop; every other track event is allowed.
  • The two are mutually exclusive, and Rudder CLI enforces it — setting both fails validation.
  • Each name is at most 100 characters, or a {{ path || fallback }} template.
yaml
connection_mode:
  web: device
event_filtering:
  whitelist:
    - Signed Up

Per-source keys

Both keys are objects keyed by the local source type — the tokens listed under Source types. A key naming a source type this destination doesn’t support fails validation.

connection_mode

Type: object

Description: Maps each source type you connect to the mode its events reach HubSpot in, using the modes in Source types.

Notes:

  • An entry is required for each source type you connect — see Connect a source.
  • A mode the source type doesn’t support on this destination fails validation — for example device for android.
yaml
connection_mode:
  web: device
  cloud: cloud

Source types

HubSpot accepts events from these source types in the mentioned connection modes:

Source typeConnection mode
androidcloud
android_kotlincloud
ioscloud
ios_swiftcloud
webcloud, device
unitycloud
cloudcloud
react_nativecloud
fluttercloud
cordovacloud

Only web offers device mode, which loads HubSpot’s native script in the browser. See HubSpot device mode and RudderStack Connection Modes.

The dashboard additionally offers HubSpot to AMP, Shopify, and Reverse ETL sources. Rudder CLI doesn’t manage those connections, so amp, shopify, and warehouse are invalid here.

Connect a source

An event stream connection to this destination is checked against two rules at validate time.

The source’s type must be supported. A source’s type resolves to one of the tokens above before the check — a JavaScript source resolves to web, and webhook and server-side SDK sources resolve to cloud. An unsupported type reports:

destination 'hubspot-prod' (type 'hs') does not support source 'my-source':
source type 'amp' is not among supported source types: android, android_kotlin, ...

The destination config must carry a connection_mode entry for that source type. This lives on the destination spec, not on the connection spec. Without it:

destination 'hubspot-prod' config has no 'connection_mode' entry for source type 'web'

HubSpot needs no additional config keys to connect a source of any type, in any mode.

Secrets

access_token and hub_id are the secret keys. Write each as a {{ .VAR }} reference and supply the value at apply time:

yaml
config:
  access_token: "{{ .HUBSPOT_ACCESS_TOKEN }}"
  hub_id: "{{ .HUBSPOT_HUB_ID }}"
bash
export RUDDER_HUBSPOT_ACCESS_TOKEN="pat-na1-..."
export RUDDER_HUBSPOT_HUB_ID="12345678"
rudder-cli apply

# or
rudder-cli apply --var-file secrets.vars.yaml

Note that:

  • The YAML that rudder-cli import writes may or may not include secret keys. Before you apply, make sure every secret key your configuration needs is present and populated through variable substitution.

See How to Use Variable Substitution in Rudder CLI.

See more

Questions? Let's figure it out together.

Join the RudderStack Slack community to connect with other users, customers, and the RudderStack team — or reach out for direct support.