Lokalisiert durch KI

Sperrungen auflisten

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

const result = await response.json();

Antworten

{
  "data": [
    {
      "object": "suppression",
      "id": "sup_47TaFwzJx6mD7NeJYvLjFxVwbgT",
      "email": "bounced@example.com",
      "type": "bounce",
      "reason": "Hard bounce - Postfach existiert nicht",
      "timestamp": "2025-12-24T10:30:00.000000Z",
      "keep_until": null
    }
  ],
  "next_page_url": "/v2/suppressions?page=2&limit=10",
  "previous_page_url": null
}