You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
would like the template/preview api to show html preview after rendering the template html with actual data.
eg.
from GET /api/templates/3/preview
Order ID : {{.tx.orderData.orderId}}
to
POST /api/templates/3/preview
{ data: { orderData: { orderId: 1 }}}
would return
Order ID : 1
Describe the solution you'd like
We could either amend the current GET api or introduce a new api with POST
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
would like the template/preview api to show html preview after rendering the template html with actual data.
eg.
from GET /api/templates/3/preview
Order ID : {{.tx.orderData.orderId}}
to
POST /api/templates/3/preview
{ data: { orderData: { orderId: 1 }}}
would return
Order ID : 1
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: