see [changelog](https://pipedrive.readme.io/docs/changelog?_ga=2.57640298.130603342.1615968634-927854641.1615386114&_gac=1.226399720.1615554908.Cj0KCQiAv6yCBhCLARIsABqJTjaAcB3wjCEKwahc00MIH2YY_UB7OPO6J_aDLKJhNRKBdKhCmf0I6_QaArseEALw_wcB#introducing-leads-api) to fix this a `POST_JSON` method could be added to thee `_request` definition!: ``` ... elif method == "POST_JSON": uri = PIPEDRIVE_API_URL + endpoint + '?api_token=' + str(self.api_token) response, data = self.http.request(uri, method="POST", body=json.dumps(data), headers={'Content-Type': 'application/json'}) ... ``` This is also the case for `PATCH` but I'm not using that method.