Localizado por IA

Listar correos

const response = await fetch('https://api.emailit.com/v2/emails?page=1&limit=10', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer em_test_51RxCWJ...vS00p61e0qRE',
    'Content-Type': 'application/json'
  }
});

const result = await response.json();

Respuestas

{
  "data": [
    {
      "object": "email",
      "id": "em_abc123xyz789def456ghi012jkl345",
      "type": "outbound",
      "from": "remitente@tudominio.com",
      "to": "destinatario@ejemplo.com",
      "subject": "Hola Mundo",
      "status": "delivered",
      "size": 4523,
      "scheduled_at": null,
      "created_at": "2026-01-08T12:00:00.123456Z",
      "updated_at": "2026-01-08T12:01:00.123456Z",
      "meta": null
    },
    {
      "object": "email",
      "id": "em_def456ghi789jkl012mno345pqr678",
      "type": "inbound",
      "from": "externo@otrodominio.com",
      "to": "buzon@tudominio.com",
      "subject": "Re: Tu consulta",
      "status": "delivered",
      "size": 2891,
      "scheduled_at": null,
      "created_at": "2026-01-08T11:30:00.123456Z",
      "updated_at": "2026-01-08T11:30:00.123456Z",
      "meta": null
    }
  ],
  "next_page_url": "/v2/emails?page=2&limit=10",
  "previous_page_url": null
}