We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use plural pipelines instead of pipeline in the url of create and update methods according to the description of hubspot
pipelines
pipeline
https://api.hubapi.com/crm-pipelines/v1/pipelines/deals?hapikey=demo
def create(self, object_type, data=None, **options): data = data or {} return self._call( "pipeline/{}".format(object_type), data=data, method="POST", **options ) def update(self, object_type, key, data=None, **options): data = data or {} return self._call( "pipeline/{}/{}".format(object_type, key), data=data, method="PUT", **options )
The text was updated successfully, but these errors were encountered:
Hmm, interesting - I'll see if I can get that updated here soon.
Sorry, something went wrong.
version bump for release, updating pipelines to use correct api endpo…
d9476f3
…ints #83
This fix is now live on pip as version 3.2.42
3.2.42
Thanks again for bringing this to my attention! 😄
No branches or pull requests
use plural
pipelines
instead ofpipeline
in the url of create and update methodsaccording to the description of hubspot
https://api.hubapi.com/crm-pipelines/v1/pipelines/deals?hapikey=demo
The text was updated successfully, but these errors were encountered: