hubspot3
hubspot3 copied to clipboard
python3.6+ hubspot client based on hapipy, but modified to use the newer endpoints and non-legacy python
Any plans to support this endpoint? It isn't exposed in the EmailEventsClient.
As documented in the project README (https://github.com/jpetrucciani/hubspot3#passing-params), I should pass `params` to send extra properties to hubspot. Seems this doesn't work for contacts: ``` contacts = client.contacts.get_all(params={"showListMemberships": "true"}, extra_properties=["hs_language"]) ```...
I am getting this error when calling client.usage_limits ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ----> 1 client.usage_limits ~/projects_backup/env/lib/python3.7/site-packages/hubspot3/__init__.py in usage_limits(self) 369 current_usage=int(limits["currentUsage"]), 370 fetch_status=limits["fetchStatus"], --> 371 resets_at=datetime.fromtimestamp(int(limits["resetsAt"])...
The Web Analytics endpoint allows developers to find and filter events associated with a CRM object of any type. Do we have any way to get all the events exported?...
Thanks for providing this wrapper, it works well for us. However, it's been a while since v3 of Hubspot's API was made the default. I just realized `/contacts/v1/contact/vid/6191/profile?hapikey=1111111111111` was used,...
How to get data from `HubspotConflict` as it's described in HS [documentation](https://legacydocs.hubspot.com/docs/methods/contacts/create_contact)?
Hello! First of all: this is a really good library and I appreciate the awesome work. When I have to do hundreds of requests things start to become a bit...
Hi, I'm struggling to get the update function in the company client to work. def update(self, company_id: str, data: Dict = None, **options) -> Dict: """update the given company with...
When using the base client (we extended it for the Hubspot Associations API), we see the following in our logs: > 2020-05-13 23:09:51,608 [22/#7f68ac2b2ae0] WARNING in base._call_raw:323: Too many retries...