-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Open
Open
Copy link
Labels
deprecatedAPI has been deprecatedAPI has been deprecatedtriagedFor maintainers: This issue has been triaged by a Pipedream employeeFor maintainers: This issue has been triaged by a Pipedream employee
Description
Summary
HubSpot is deprecating the Contacts Lists v1 API on April 30, 2026. Three methods in hubspot.app.mjs, the lists prop definition, and three components use the deprecated endpoints and must be migrated to the Lists v3 API.
Impacted
common/constants.mjs
API_PATH.CONTACTS = "/contacts/v1"— base path constant used by impacted methods; needs a dedicatedLISTSv3 path constant
hubspot.app.mjs
| Method | Current (v1 — deprecated) | Migration Target (v3) |
|---|---|---|
getLists() |
GET /contacts/v1/lists |
POST /crm/v3/lists/search |
getListContacts() |
GET /contacts/v1/lists/{listId}/contacts/all |
GET /crm/v3/lists/{listId}/memberships |
addContactsToList() |
POST /contacts/v1/lists/{listId}/add |
PUT /crm/v3/lists/{listId}/memberships/add |
lists prop definition |
calls getLists() |
update after getLists() migration |
Actions
actions/add-contact-to-list/— callsaddContactsToList(), fully impactedactions/create-email/— useslistsprop definition forincludeContactListsandexcludeContactLists; both dropdowns will break
Sources
sources/new-or-updated-contact/— useslistsprop definition for list filtering; underlying membership checks already use v3
Not Impacted
sources/new-contact-added-to-list/— already on v3 Lists API
Notes
- v3 contact IDs use
recordIdinstead of v1'svid translateLegacyListId()(GET /crm/v3/lists/idmapping) is already inhubspot.app.mjsand can map legacy v1 list IDs to v3 IDs if needed
References
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
deprecatedAPI has been deprecatedAPI has been deprecatedtriagedFor maintainers: This issue has been triaged by a Pipedream employeeFor maintainers: This issue has been triaged by a Pipedream employee
Type
Projects
Status
Prioritized