notification.template.reset
Restore the default for one variant by DELETING the override. It never writes the factory wording into the tenant — the default is code, so deleting the row is what makes the next upgrade of that wording reach this instance. Resetting a store returns it to the tenant’s copy; resetting the tenant returns it to the factory.
- Scope:
tenant.settings.write - System: no
- Reachable from:
POST /v1/commands/notification.template.reset(tenant credential) · MCP toolnotification.template.reset· SDKclient.call('notification.template.reset', …) - Events:
notification.config.updated
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "channel_key": { "pattern": "^[a-z][a-z0-9_]*$", "type": "string" }, "locale": { "maxLength": 35, "minLength": 2, "type": "string" }, "store_id": { "anyOf": [ { "minLength": 1, "type": "string" }, { "type": "null" } ] }, "type_key": { "minLength": 1, "type": "string" } }, "required": [ "type_key", "channel_key", "locale" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "restored": { "type": "boolean" } }, "required": [ "restored" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)