Hubspot API Script Examples?

Does anyone have any scripts they use to send data from Fibery into Hubspot they wouldn’t mind sharing? Or do most of you just use tools like Zapier or Make to do that kind of thing?

I’m looking to create a Task in Hubspot when an entity in Fibery has it’s status changed to “Complete” and was hoping there might be some examples out there I could modify to fit my needs instead of starting from scratch!

I might be able to assist here – If I remember my Hubspot API endpoints, Tasks belong to a CRm record, no? Do you have some way of connecting the completed entity in Fibery over to a record in the CRM in Hubspot?

Thanks @grex22!

Creating tasks seem to use the Tasks API, which is a subset of the engagement API.

Here’s the Node example they provide for creating a task:

const hubspot = require('@hubspot/api-client');

const hubspotClient = new hubspot.Client({"accessToken":"YOUR_ACCESS_TOKEN"});

const properties = {
  "additionalProp1": "string",
  "additionalProp2": "string",
  "additionalProp3": "string"
};
const SimplePublicObjectInputForCreate = { associations: [{"types":[{"associationCategory":"HUBSPOT_DEFINED","associationTypeId":0}],"to":{"id":"string"}}], objectWriteTraceId: "string", properties };

try {
  const apiResponse = await hubspotClient.crm.objects.tasks.basicApi.create(SimplePublicObjectInputForCreate);
  console.log(JSON.stringify(apiResponse, null, 2));
} catch (e) {
  e.message === 'HTTP request failed'
    ? console.error(JSON.stringify(e.response, null, 2))
    : console.error(e)
}

In Fibery, we have Hubspot syncing over “Deal” entities and then link those deals to an “Order” entity in a “Client” space. When the “Order’s” state is “Complete”, I’m looking to create a task on the Hubspot deal that basically says “Order Complete: Create Invoice”.

Again, not expecting you or anyone to write the script for me, but if you’ve got an existing Fibery script that feeds data into Hubspot via API, I would love to see if I could retrofit it for my use case.

I think you might need to go the webhook route, if you have a webserver where you can throw some code. That would let you install the hubspot api client and do all the fun bits that their sample code would require.

I’m usually a “code first” person when it comes to this sort of thing, but it does look like Make.com does support this exact workflow:

However if you’re like me and would prefer to build your own, you’d want to create a webhook via Fibery’s API first, point it to a script somewhere that would ingest the Fibery info, and then update Hubspot similar to the code you posted.

https://the.fibery.io/@public/User_Guide/Guide/Webhooks-258