Lokalisiert durch KI

Cancel email

const response = await fetch('https://api.emailit.com/v2/emails/em_abc123xyz789def456/cancel', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer em_test_51RxCWJ...vS00p61e0qRE',
    'Content-Type': 'application/json'
  }
});

const result = await response.json();

Responses

{
  "object": "email",
  "id": "em_abc123xyz789def456ghi012jkl345",
  "status": "canceled",
  "message": "Email has been canceled successfully"
}