Gp-Handlebars-Rest-Api ()

POST /api/render
Content-Type: application/json

{
    "template": "Hallo {{name}}! Servus aus {{city}}.",
    "context": {
        "name": "Gerold",
        "city": "Oberhofen im Inntal"
    }
}

>>> {
>>>   "rendered": "Hallo Gerold! Servus aus Oberhofen im Inntal."
>>> }