List email notifications
Retrieve all available email notification templates with their event triggers, recipient types, and current settings.
Authorization
applicationPassword AuthorizationBasic <token>
WordPress Application Password authentication. Generate one at wp-admin > Users > Application Passwords. Use as Basic Auth with username:application_password (base64-encoded).
In: header
Response Body
application/json
curl -X GET "https://your-site.com/wp-json/fluent-cart/v2/email-notification"{
"data": {
"property1": {
"event": "string",
"title": "string",
"description": "string",
"recipient": "admin",
"template_path": "string",
"is_async": true,
"pre_header": "string",
"settings": {
"active": "yes",
"subject": "string",
"is_default_body": "yes",
"email_body": "string"
},
"name": "string"
},
"property2": {
"event": "string",
"title": "string",
"description": "string",
"recipient": "admin",
"template_path": "string",
"is_async": true,
"pre_header": "string",
"settings": {
"active": "yes",
"subject": "string",
"is_default_body": "yes",
"email_body": "string"
},
"name": "string"
}
}
}