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
It would be nice to render a template trough a API like
[POST] /api/v1/templates/render/{id}
or
[POST] /api/v1/templates/sent/{id}
Both APIs will have the same input. It will retrieve contact data by id, will replace the tags in the email with contact data and will replace the tags with data.
{
"contact": {
"id": "xxxxx"
}
"data": {
"custom_attribute": "yyyyy"
}
}
The render API with only render the HTML and is returned. The sent API will render the Email and will sent it out to the contact.
The text was updated successfully, but these errors were encountered:
It would be nice to render a template trough a API like
[POST] /api/v1/templates/render/{id}
or
[POST] /api/v1/templates/sent/{id}
Both APIs will have the same input. It will retrieve contact data by id, will replace the tags in the email with contact data and will replace the tags with data.
{
"contact": {
"id": "xxxxx"
}
"data": {
"custom_attribute": "yyyyy"
}
}
The render API with only render the HTML and is returned. The sent API will render the Email and will sent it out to the contact.
The text was updated successfully, but these errors were encountered: