Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以通过 Hubspot API 随着时间的推移获得 Hubspot 联系人列表的大小?我需要过去 30 天每天列表中的联系人数量。
据我所知,无法通过 HubSpot API 获取历史联系人数量。但是,您可以执行以下操作:
创建一个获取当前联系人总数的脚本。您可以使用以下代码执行此操作:
https://api.hubapi.com/contacts/v1/contacts/statistics/?hapikey=your_api_key
每晚在 cron 中运行上述脚本,并将其结果保存在数据库中(连同当天)
希望这可以帮助。