Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save somewherewarm-snippets/571b4ac8524f03f22868c665841f6d3b to your computer and use it in GitHub Desktop.

Select an option

Save somewherewarm-snippets/571b4ac8524f03f22868c665841f6d3b to your computer and use it in GitHub Desktop.
curl -X POST https://example.com/wp-json/wc-product-add-ons/v2/global-add-ons \
-u customer_key:customer_secret \
-H "Content-Type: application/json" \
-d '{
"name": "Personalization Options",
"priority": 5,
"restrict_to_category_ids": [],
"fields": [
{
"name": "Engraving",
"title_format": "label",
"description": "Add a handmade engraving to your ring",
"type": "custom_text",
"display": "select",
"restrictions_type": "any_text",
"price_type": "flat_fee",
"price": "100",
"placeholder": "From the ❤️",
"min": 0,
"max": 10
},
{
"name": "Matching pin",
"type": "multiple_choice",
"required": false,
"title_format": "label",
"default": "1",
"options": [
{
"label": "Silver",
"price": "30",
"price_type": "flat_fee",
"visibility": true
},
{
"label": "Gold",
"price": "45",
"price_type": "flat_fee",
"visibility": true
}
]
}
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment