Localizado por IA

Actualizar plantilla

const response = await fetch('https://api.emailit.com/v2/templates/tem_47TaFwzJx6mD7NeJYvLjFxVwbgT', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer em_test_51RxCWJ...vS00p61e0qRE',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'Email de Bienvenida - Actualizado',
    subject: '¡Bienvenido! Nos alegra tenerte aquí'
  })
});

const result = await response.json();

Respuestas

{
  "data": {
    "id": "tem_47TaFwzJx6mD7NeJYvLjFxVwbgT",
    "name": "Email de Bienvenida - Actualizado",
    "alias": "welcome-email",
    "from": "Soporte <support@company.com>",
    "subject": "¡Bienvenido! Nos alegra tenerte aquí",
    "reply_to": ["support@company.com"],
    "html": "<h1>¡Bienvenido!</h1>",
    "text": "¡Bienvenido!",
    "editor": "html",
    "published_at": "2025-12-24T10:30:00.000000Z",
    "preview_url": null,
    "created_at": "2025-12-24T10:30:00.000000Z",
    "updated_at": "2025-12-24T12:00:00.000000Z"
  },
  "message": "La plantilla se actualizó correctamente."
}