Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TDL-24534 Hubspot custom objects #981

Merged
merged 12 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions _changelog-files/2023/2023-12-12-hubspot-v2-custom-objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "HubSpot (v2): Custom objects support"
content-type: "changelog-entry"
date: 2023-12-12
entry-type: new-feature
entry-category: integration
connection-id: hubspot
connection-version: 2
pull-request: "https://github.com/singer-io/tap-hubspot/pull/242"
---
{{ site.data.changelog.metadata.single-integration | flatify }}

We've updated our {{ this-connection.display_name }} (v{{ this-connection.this-version }}) integration to add support for custom objects. You will now be able to replicate a table for each custom object in our {{ this-connection.display_name }} account.

The custom object tables support both standard and custom properties, and also support associations with `emails`, `meetings`, `notes`, `tasks`, `calls`, `conversations`, `contacts`, `companies`, `deals`, and `tickets`.

If you already have a {{ this-connection.display_name }} connection, you will need to re-authorize it to be able to select the new tables.
21 changes: 20 additions & 1 deletion _data/taps/schemas/hubspot/v2/hubspot-v2-tables.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
tap: hubspot
version: '2'
tap-repo-schemas: true
tables:
- name: campaigns
description: 'The `{{ table.name }}` table contains info about the campaigns in
Expand Down Expand Up @@ -81,6 +82,25 @@ tables:
replication-method: Key-based Incremental
primary-key: listId
replication-key: updatedAt
- name: custom_objects
description: 'Tables for custom CRM objects in your {{ integration.display_name
}} account will have the same name as the object. For example, if you have a custom
object named `cars`, the table will be named `cars`.


The fields listed below are standard fields; they are included in every custom
object table. A field will be added for each property you select when configuring
the table. The property names will be prefixed with `property_`. For example,
if you have a property named `model`, it will appear as `property_model`.

'
links:
doc-link: https://developers.hubspot.com/docs/api/crm/crm-custom-objects
singer-schema: https://github.com/singer-io/tap-hubspot/tree/master/tap_hubspot/schemas/custom_objects.json
table-details:
replication-method: Key-based Incremental
primary-key: id
replication-key: updatedAt
- name: deals
description: 'The `{{ table.name }}` table contains info about the deals in a {{
integration.display_name }} portal.
Expand Down Expand Up @@ -218,4 +238,3 @@ tables:
replication-method: Key-based Incremental
primary-key: id
replication-key: updatedAt
tap-repo-schemas: true
Loading