SSIS Components for HubSpot

Build 25.0.9434

ServiceAssociations

Retrieve the IDs of all the objects associated to specific Services objects in HubSpot.

Table Specific Information

The ServiceAssociations table provides access to the relationship data between service records and other HubSpot objects such as contacts, companies, deals, and tickets.

SELECT

When selecting service associations, filtering can be applied to columns marked as "Filterable." For these columns, the only supported server-side operator is =.

SELECT * FROM ServiceAssociations WHERE ID = '96ec8565-3b73-4ee8-9815-f90566ba9c42'
SELECT * FROM ServiceAssociations WHERE Type = 'contacts'

INSERT


INSERT INTO ServiceAssociations (ID, AssociationId, Type) VALUES ('25151', '12345', 'contacts')

DELETE


DELETE FROM ServiceAssociations WHERE ID = '25151' AND AssociationId = '12345'

Columns

Name Type ReadOnly References Filterable Description
Id [KEY] Long False

Services.Id

False

Services ID.

AssociationId [KEY] Long False False

ID of the object that this Services object is associated with.

Type [KEY] String False False

Type of the associated object, which can be a contact, deal etc.

TypeId [KEY] String False False

The numeric ID for the association type. This column is empty for more general associations queries.

Category [KEY] String False False

The category of the association type for the specified object pair. This column is empty for more generic associations queries.

TypeLabel String True False

The label assigned to the association type between objects.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434