Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save somewherewarm-snippets/73c0439be20057ac79641ef6209d844d to your computer and use it in GitHub Desktop.
Save somewherewarm-snippets/73c0439be20057ac79641ef6209d844d to your computer and use it in GitHub Desktop.
curl -X PUT https://example.com/wp-json/wc-product-add-ons/v2/global-add-ons/123 \
-u customer_key:customer_secret \
-H "Content-Type: application/json" \
-d '{
"name": "Personalization Options for rings",
"restrict_to_category_ids": [
22
],
"fields": [
{
"id": 1719406272,
"name": "Handmade Engraving",
"price": "120",
"max": 12
},
{
"id": 1719406273,
"options": [
{
"label": "Silver",
"price": "30",
"price_type": "flat_fee"
},
{
"label": "Gold",
"price": "45",
"price_type": "flat_fee"
},
{
"label": "Platinum",
"price": "50",
"price_type": "flat_fee"
}
]
}
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment