Localizado por IA

Publicar plantilla

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();

Respuestas

{
  "data": {
    "id": "tem_anotherOidHere123456789",
    "name": "Email de Bienvenida v2",
    "alias": "welcome-email",
    "from": "Soporte <support@company.com>",
    "subject": "¡Bienvenido! Versión actualizada",
    "reply_to": ["support@company.com"],
    "html": "<h1>¡Bienvenido v2!</h1>",
    "text": "¡Bienvenido 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": "La plantilla se publicó correctamente."
}