?
hubspotGetContact
Look up a HubSpot contact by email address or contact ID.
mindstudio.hubspotGetContact({ searchBy, contactEmail, contactId, additionalProperties }) → Result
Look up a HubSpot contact by email address or contact ID.
Parameters
connectionId
string
HubSpot OAuth connection ID
searchBy
string
RequiredHow to look up the contact: by email address or HubSpot contact ID
emailid
contactEmail
string
RequiredEmail address to search by (used when searchBy is 'email')
contactId
string
RequiredHubSpot contact ID (used when searchBy is 'id')
additionalProperties
string[]
RequiredExtra HubSpot property names to include in the response beyond the defaults
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.hubspotGetContact({ searchBy: /* ... */, contactEmail: /* ... */, contactId: /* ... */, additionalProperties: /* ... */ });