curl https://api.sendrealm.com/templates \
-X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Welcome Series Email",
"channel": "email",
"subject_template": "Welcome to {{company_name}}",
"preview_text": "Start with your first delivery in minutes.",
"editor_json": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Hi {{first_name}}, thanks for joining Sendrealm."
}
]
}
]
},
"rendered_html": "<p>Hi {{first_name}}, thanks for joining Sendrealm.</p>",
"rendered_text": "Hi {{first_name}}, thanks for joining Sendrealm."
}'