Last active
March 3, 2025 09:14
-
-
Save somewherewarm-snippets/93ed85f37cf7a7216a79d649426ad81c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X POST https://example.com/wp-json/wc/v3/products \ | |
| -u customer_key:customer_secret \ | |
| -H "Content-Type: application/json" \ | |
| -d '{ | |
| "name": "Happiness Ring", | |
| "type": "simple", | |
| "regular_price": "21.99", | |
| "description": "Beautiful ring that will make you happy.", | |
| "exclude_global_add_ons": true, | |
| "addons": [ | |
| { | |
| "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": "0", | |
| "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