Releases: jpetrucciani/hubspot3
Adding a CRM PipelinesClient
Thanks to @danilolessa (#24), we now have a client for CRM Pipelines!
Fixing OAuth token support
Adding a way to delete companies
Thanks to @SioKCronin, we now have a way to delete companies from the CompaniesClient
!
Adding Recently Created/Modified Companies
Thanks to @kevin2357, we now have endpoints for getting recently created/modified companies!
Adding search by domain to CompaniesClient
Added basic support for this API call, which allows you to search for companies associated with a certain domain.
Fetching extra properties for get_all on companies
This adds the same functionality for companies, and refines the extra_properties
kwarg to accept either a list or a bare string (this is also applied to deals and contacts).
The readme has also been switched to RST so it will render on pypi
Fetching extra properties for get_all and get_batch Contacts
Thanks @NickBrecht for bringing up this issue! #16
You should now be able to pass a list to the ContactsClient.get_all
and ContactsClient.get_batch
functions called extra_properties, which should contain a list of extra properties (visible on this page of the HubSpot docs) you'd like to query for. This will then extend the default list, including those properties in your response
Fetching extra properties for get_all Deals
Thanks @zimmerel for bringing up this issue! #14
You should now be able to pass a list to the DealsClient.get_all
function called extra_properties
, which should contain a list of extra properties (visible on this page of the HubSpot docs) you'd like to query for. This will then extend the default list, including those properties in your response
Bug fix for HubspotError
Thanks @ArtemGordinsky for catching this issue and fixing it!
Tweaking the HubspotError to be more tracker friendly
Thanks @ArtemGordinsky for bringing this issue to attention, and creating a PR for it!
The first line of a HubspotError's string representation will now have the actual error message instead of the ---- request ---- line.