Локалізовано за допомогою ШІ

Публікація шаблону

const response = await fetch('https://api.emailit.com/v2/templates/tem_anotherOidHere123456789/publish', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer em_test_51RxCWJ...vS00p61e0qRE',
    'Content-Type': 'application/json'
  }
});

const result = await response.json();

Відповіді

{
  "data": {
    "id": "tem_anotherOidHere123456789",
    "name": "Вітальний лист v2",
    "alias": "welcome-email",
    "from": "Підтримка <support@company.com>",
    "subject": "Ласкаво просимо! Оновлена версія",
    "reply_to": ["support@company.com"],
    "html": "<h1>Ласкаво просимо v2!</h1>",
    "text": "Ласкаво просимо v2!",
    "editor": "html",
    "published_at": "2025-12-24T13:00:00.000000Z",
    "preview_url": null,
    "created_at": "2025-12-24T11:00:00.000000Z",
    "updated_at": "2025-12-24T13:00:00.000000Z"
  },
  "message": "Шаблон успішно опубліковано."
}