The Basics
Example
POST {{host}}/templates?templateName=Freemarker.HelloWorld
Content-Type: text/plain
Authorization: Basic {{basicToken}}
Hello ${UserName}!
Welcome to the Freemarker render engine.
###
POST {{host}}/templates/render?templateName=Freemarker.HelloWorld
Content-Type: application/json
Accept: text/plain
Authorization: Basic {{basicToken}}
{
"UserName" : "Lisa Mueller"
}
###
POST {{host}}/templates/render?templateName=Freemarker.HelloWorld
Content-Type: application/json
Accept: text/plain
Authorization: Basic {{basicToken}}
Hello Markus Schmidt!
Welcome to the Freemarker render engine.Last updated