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
filename : quickbooks/api.py line # : 92 tag : todo md5 : a04326c524bda392a1687f959dc3d488
# [todo] - validate that the object_body is a proper json blob constructed_url = "{}/company/{}/{}".format(self.url_base, self.realm_id, object_type) return self.session.post(constructed_url.lower(), object_body).json() def delete(self, object_type, object_body): # [todo] - add error handling for v3 delete # [todo] - validate that the object_body is a proper json blob constructed_url = "{}/company/{}/{}?operation=delete".format(self.url_base, self.realm_id, object_type) return self.session.post(constructed_url.lower(), object_body).json() def update(self, object_type, object_body): # [todo] - add error handling for v3 update # [todo] - validate that the object_body is a proper json blob constructed_url = "{}/company/{}/{}?operation=update".format(self.url_base, self.realm_id, object_type) return self.session.post(constructed_url.lower(), object_body).json()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
filename : quickbooks/api.py
line # : 92
tag : todo
md5 : a04326c524bda392a1687f959dc3d488
The text was updated successfully, but these errors were encountered: