{ "operationId": "updateAbandonedCartEmailTemplate", "method": "PUT", "path": "/marketing/abandoned-cart-emails/{id}", "summary": "BigCommerce Update an email template", "requestExamples": [ { "contentType": "application/json", "name": "Update Abandoned Cart Email template", "example": { "is_active": true, "coupon_code": "FF11-22X4", "notify_at_minutes": 60, "template": { "subject": "Complete your purchase at {{ store.name }}", "body": "Complete your purchase {{notification.checkout.link}}", "translations": [ { "locale": "en", "keys": { "hello_phrase": "Welcome back," } } ] } } }, { "contentType": "application/json", "name": "Enable email", "example": { "is_active": true } }, { "contentType": "application/json", "name": "Disable email", "example": { "is_active": false } }, { "contentType": "application/json", "name": "Update coupon code and notification time", "example": { "coupon_code": "FF11-22X4", "notify_at_minutes": 60 } } ], "responseExamples": [] }