find-contact.ts•3.06 kB
import { MarkdownVariant } from '@activepieces/shared';
import { createAction, Property } from '@activepieces/pieces-framework';
import { Client } from '@hubspot/api-client';
import { hubspotAuth } from '../../';
import { getDefaultPropertiesForObject, standardObjectPropertiesDropdown } from '../common/props';
import { OBJECT_TYPE } from '../common/constants';
import { FilterOperatorEnum } from '../common/types';
export const findContactAction = createAction({
auth: hubspotAuth,
name: 'find-contact',
displayName: 'Find Contact',
description: 'Finds a contact by searching.',
props: {
firstSearchPropertyName: standardObjectPropertiesDropdown(
{
objectType: OBJECT_TYPE.CONTACT,
displayName: 'First search property name',
required: true,
},
true,
true,
),
firstSearchPropertyValue: Property.ShortText({
displayName: 'First search property value',
required: true,
}),
secondSearchPropertyName: standardObjectPropertiesDropdown(
{
objectType: OBJECT_TYPE.CONTACT,
displayName: 'Second search property name',
required: false,
},
true,
true,
),
secondSearchPropertyValue: Property.ShortText({
displayName: 'Second search property value',
required: false,
}),
markdown: Property.MarkDown({
variant: MarkdownVariant.INFO,
value: `### Properties to retrieve:
firstname, lastname, email, company, website, mobilephone, phone, fax, address, city, state, zip, salutation, country, jobtitle, hs_createdate, hs_email_domain, hs_object_id, lastmodifieddate, hs_persona, hs_language, lifecyclestage, createdate, numemployees, annualrevenue, industry
**Specify here a list of additional properties to retrieve**`,
}),
additionalPropertiesToRetrieve: standardObjectPropertiesDropdown({
objectType: OBJECT_TYPE.CONTACT,
displayName: 'Additional properties to retrieve',
required: false,
}),
},
async run(context) {
const {
firstSearchPropertyName,
firstSearchPropertyValue,
secondSearchPropertyName,
secondSearchPropertyValue,
} = context.propsValue;
const additionalPropertiesToRetrieve = context.propsValue.additionalPropertiesToRetrieve ?? [];
const filters = [
{
propertyName: firstSearchPropertyName as string,
operator: FilterOperatorEnum.Eq,
value: firstSearchPropertyValue,
},
];
if (secondSearchPropertyName && secondSearchPropertyValue) {
filters.push({
propertyName: secondSearchPropertyName as string,
operator: FilterOperatorEnum.Eq,
value: secondSearchPropertyValue,
});
}
const client = new Client({ accessToken: context.auth.access_token });
const defaultContactProperties = getDefaultPropertiesForObject(OBJECT_TYPE.CONTACT);
const response = client.crm.contacts.searchApi.doSearch({
limit: 100,
properties: [...defaultContactProperties, ...additionalPropertiesToRetrieve],
filterGroups: [{ filters }],
});
return response;
},
});