Woocommerce Product Tags

Hello community,

I’m trying to edit the content in Product Tag pages. I’m using an https request node to PUT the data in the description field using this end point /wp-json/wp/v2/product_tag/{{ $(‘Create Tag’).item.json.item.id }} the expression works and I also confirmed the final URL works meaning I can see the data.

But I don’t know why the content its not being passed by nor update the product tag content description. Any help or recommendations?

Thank you all

you have to basically use PUT “https://yourwebsite.com/wp-json/wc/v3/products/tags/{id}”, this api update the product tag by giving the id and then in body pas your content like this”{
“description”: “This tag groups all premium Apple iPhones with 5G features.”
}”