Reference

Endpoint Get Contact Properties


Name

get_contact_properties

Description

No description available

Parameters

Parameter Required Options
There are no parameters

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Name DT_WSTR nvarchar(300) 300
Label DT_WSTR nvarchar(300) 300
Type DT_WSTR nvarchar(150) 150
IsHidden DT_BOOL bit
FieldType DT_WSTR nvarchar(150) 150
Description DT_WSTR nvarchar(1500) 1500
If the column you are looking for is missing, consider customizing Hubspot Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

Examples

SSIS

Use Hubspot Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Hubspot
Hubspot Connector can be used to integrate Hubspot and your data source, e.g. Microsoft SQL Server, Oracle, Excel, Power BI, etc. Get, write, delete Hubspot data in a few clicks!
Hubspot
Get Contact Properties
There are no parameters to configure.
SSIS API Source - Read from table or endpoint

API Destination

API Destination - Hubspot
Hubspot Connector can be used to integrate Hubspot and your data source, e.g. Microsoft SQL Server, Oracle, Excel, Power BI, etc. Get, write, delete Hubspot data in a few clicks!
Hubspot
Get Contact Properties
There are no parameters to configure.
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Get contact properties

SELECT * FROM get_contact_properties

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Get contact properties

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_contact_properties';

EXEC (@MyQuery) AT [LS_TO_HUBSPOT_IN_GATEWAY];