wordpress_wc_create_coupon
Create WooCommerce discount coupons with custom codes and amounts to boost sales and customer engagement on your WordPress store.
Instructions
Create WooCommerce discount coupon
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | ||
| amount | Yes |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"type": "string"
},
"code": {
"type": "string"
}
},
"required": [
"code",
"amount"
],
"type": "object"
}