APIs & Integrations

Sven1
Member

Engagement Filter an sort via api

I am building a Live Dashboard for a client. One of the things they want a report on is the amount of open tasks. I have looked at using the "Get all engagements" endpoint but find it extremely limiting in a way of :

  1. it is in oldest to newest order
  2. I can't specify a starting date as to when i want to return results from
  3. The engagement ID/offset does not seem to relate to a taskID so I can even look for a Particular task to start from.

What are my options here? How can I do this? Is it possible to create a filter in hubspot, and then call that filter via the api? Are there additional filters that are available to use with the standard call?

Regards

0 Upvotes
2 Replies 2
Derek_Gervais
HubSpot Alumni
HubSpot Alumni

Engagement Filter an sort via api

Hi @Sven,

Daniel's solution a great course of action. For some additional information, you can minimize the syncing necessary by pulling only recently updated engagements:

0 Upvotes
danaketh
Participant

Engagement Filter an sort via api

In your case, I suggest you go the same way we did - cache whatever data you need in your database and have CRON to sync from HubSpot to your database every N minutes. Depends on how frequent changes happen on your account.

I'm taking data from HubSpot API and importing it into app database in form which the app can easily read and process the information for user.

PROS

  • your application is not depending on HubSpot API being available 24/7
  • you can process and visualize the data any way you want
  • you can easily achieve more because you can query multiple things without having to touching the API

CONS

  • you have to design the database tables for keeping the data
  • you need to set up a synchronization script
  • you're not working in real time