Page 1
Templates
Create or update a template
POST {{host}}/Templates?templateName={{templateName}}
Content-Type: text/plain
Authorization: Basic {{basicToken}}
Hello ${contact.firstname} ${contact.lastname} - direct POST!Render a document
POST {{host}}/render?templateName={{templateName}}
Content-Type: application/json
Authorization: Basic {{basicToken}}
{
"contact" : {
"firstname" : "Markus",
"lastname" : "Schmidt"
}
}Last updated