bigcommerce-api-python icon indicating copy to clipboard operation
bigcommerce-api-python copied to clipboard

Python client library for Bigcommerce API

Results 24 bigcommerce-api-python issues
Sort by recently updated
recently updated
newest added

The API supports getting subresources within the same request as products: ![image](https://user-images.githubusercontent.com/715626/118252476-cfc70780-b476-11eb-8dcb-7644eec67c6c.png) However, the client seems to only provide access one at a time via a separate API call. ![image](https://user-images.githubusercontent.com/715626/118252647-fd13b580-b476-11eb-9ca1-719bb03d8502.png)...

### Expected behavior I'm trying to use the v3 Products API's, but I need to filter by "**id:not_in**". As far as I know, Python does not allow colons in variable...

### Expected behavior Zip should be returned as a payment method in the PaymentMethods API resource when it is enabled. ### Actual behavior Zip is not returned as a payment...

The README.md suggests that `api.Products.iterall()` and `api.Products.count()` should exist but they do not appear to. Also, the releases page says that the last release was 2019. They're haven't been any...

### Expected behavior when i do something lile this BCPYTHONCLIENT.Orders.get(10).update(custom_status='Completed') update succefully ### Actual behavior resturns an errror bigcommerce.exception.ClientRequestException: 400 Bad Request @ orders/10: b'[{"status":400,"message":"The field \'custom_status\' is not supported...

#### What? README update to go along with the v3 work by VDuda

Hi, when can we expect API v3 endpoints to be supported?

### Overview I am trying to update the customer password in one of my applications. Sample code: ``` import bigcommerce big_commerce_url_info = xxx big_commerce_store_hash = xxx big_commerce_client_id = xxx big_commerce_auth_token...

Currently, I'm using the following to update information about a single product. api.Products.get(1234).update(inventory_level=20) Is there a way to update multiple products? I've tried something like this, but got a 404...

Add support to get and post subscribers and scripts from bigcommerce using v3 api ### What Add class for Subscibers and Scripts. changing connection path based on class variable api_version...