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
When I fetch a WooCommerce product using this API, the variable low_stock_amount is an empty string, I believe should be an integer '0'.
low_stock_amount
Always return an integer. or a 0
It returns an empty string.
response = wcapi.get('products', params={'sku':sku}).json()
print(response)
##Related bug I believe this is a related bug
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue summary
When I fetch a WooCommerce product using this API, the variable
low_stock_amount
is an empty string, I believe should be an integer '0'.Expected behavior
Always return an integer. or a 0
Actual behavior
It returns an empty string.
Steps to reproduce the problem
response = wcapi.get('products', params={'sku':sku}).json()
print(response)
##Related bug
I believe this is a related bug
The text was updated successfully, but these errors were encountered: