Frends.HubSpot.GetContacts / 1.0.0
Summary
Retrieves contacts matching a filter, returning only the properties you ask for and a cursor for the next page. Large result sets therefore arrive a page at a time rather than all at once.
Typical use — outbound sync to another system; requesting only the properties needed keeps personal data out of the Process that does not belong there
Input parameters for retrieving HubSpot contacts.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| FilterQuery | String |
– | email eq 'test@example.com' |
Optional. Filter query to narrow search results in a simple expression format: |
| Properties | String[] |
– | new string[] { "email", "firstname", "lastname", "company" } |
Optional. Specific contact properties to retrieve. |
| Limit | Int32 |
100 |
50 |
Optional. Maximum number of contacts to return. |
| After | String |
– | "MjAyMy0wMS0wMVQwMDowMDowMC4wMDAtMTI6MDA" |
Optional. Paging cursor for fetching the next page. |