Coupon created successfully
const response = await fetch('https://api.zydon.com.br/api/sales/coupons', { method: 'POST', headers: { "Authorization": "Bearer JWT", "Content-Type": "application/json" }, body: JSON.stringify({ "allowed_with_free_shipping_discount": false, "allowed_with_order_value_discount": false, "allowed_with_product_discount": false, "end_date": "2024-12-21", "is_active": false, "is_company_specific": false, "is_partner_specific": false, "is_payment_method_specific": false, "minimum_items_quantity": 0, "minimum_items_value": 0, "name": "text", "only_available_for_first_sale": false, "only_available_for_mobile_app": false, "start_date": "2024-12-21", "type": "ORDER_VALUE", "value": 0, "value_type": "MONETARY" }), }); const data = await response.json();
{ "id": "text" }