Seznam e-mailů

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

Odpovědi

{
  "data": [
    {
      "object": "email",
      "id": "em_abc123xyz789def456ghi012jkl345",
      "type": "outbound",
      "from": "odesilatel@vasedomena.cz",
      "to": "prijemce@priklad.cz",
      "subject": "Ahoj světe",
      "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": "externi@jinedomena.cz",
      "to": "schranka@vasedomena.cz",
      "subject": "Re: Váš dotaz",
      "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
}