Skip to main content
Best answer

I'm trying to Check Uncheck the free shipping Field (Product field of BigCom) using Webhook tool but this is not working.


Forum|alt.badge.img+1

 

 

I think something is wrong with this is_free_shipping field because 

other fields are updating except this Free shipping field

please help me  

 

Best answer by RahulGuptaBest answer by RahulGupta

I guess something is wrong with that because I tried with code tool using Python as a result I’m able to Update and create new products and also able to change that Free shipping field 

 

View original
Did this topic help you find an answer to your question?
This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

10 replies

MohSwellam
Forum|alt.badge.img+8
  • Zapier Expert
  • 840 replies
  • December 20, 2022

Hi @RahulGupta 

 

Can you please provide the API Documentation you are using so we can help you better? 

 

I would think its looking for 0 / 1 instead of false / true 


Forum|alt.badge.img+1
  • Author
  • Beginner
  • 15 replies
  • December 20, 2022

API doc:- https://developer.bigcommerce.com/api-reference/366928572e59e-create-a-product

 

yes, I’m using true/ false 

I exported some existing data from BigCom and there is value in Y/N in that field 

 


MohSwellam
Forum|alt.badge.img+8
  • Zapier Expert
  • 840 replies
  • December 20, 2022

According to the API Documentation, it accepts “true”. False just means that this checkbox is unchecked. 

 

is_free_shipping

boolean

Flag used to indicate whether the product has free shipping. If true, the shipping cost for the product will be zero.

 

in case of false try to pass blank


Forum|alt.badge.img+1
  • Author
  • Beginner
  • 15 replies
  • December 20, 2022

NOT working

I tried yes/no, 0/1, and also blank values but that fields took their default values every time

 


MohSwellam
Forum|alt.badge.img+8
  • Zapier Expert
  • 840 replies
  • December 20, 2022

You are trying to CREATE a new product OR UPDATE an Existing Product? Because the API you mentioned above is for creating New Products. 


Forum|alt.badge.img+1
  • Author
  • Beginner
  • 15 replies
  • December 20, 2022

well I’m trying both actually, I’m using Sheets as Trigger and applying a path if Id exists then the action goes for Update otherwise for NEW

 


MohSwellam
Forum|alt.badge.img+8
  • Zapier Expert
  • 840 replies
  • December 20, 2022

Another thing, I THINK there is an extra space before “is_free_shipping” in your webhooks, delete that. 


Forum|alt.badge.img+1
  • Author
  • Beginner
  • 15 replies
  • December 21, 2022

Tried but still not working…..😣

Invalid Field returning 

 

 


MohSwellam
Forum|alt.badge.img+8
  • Zapier Expert
  • 840 replies
  • December 21, 2022

Just to be clear, you are using those 2 endpoints 

 

POST

https://api.bigcommerce.com

/stores/{store_hash}/v3/catalog/products

 

PUT

https://api.bigcommerce.com

/stores/{store_hash}/v3/catalog/products/{product_id}

 

If so, maybe you want to open a ticket with support on BigCommerce because everything seems to be setup as per thier API Documentation. 


Forum|alt.badge.img+1
  • Author
  • Beginner
  • 15 replies
  • Answer
  • December 22, 2022

I guess something is wrong with that because I tried with code tool using Python as a result I’m able to Update and create new products and also able to change that Free shipping field