destination_verification_required

HTTP 409

Destination address must be verified

Type URL

https://developer.hostup.se/errors/destination_verification_required

Detail message

${who}needs to confirm the verification email from Cloudflare before mail can be forwarded there.

Example response

{
  "type": "https://developer.hostup.se/errors/destination_verification_required",
  "title": "Destination address must be verified",
  "status": 409,
  "detail": "${who}needs to confirm the verification email from Cloudflare before mail can be forwarded there. ",
  "code": "destination_verification_required",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "destination_verification_required") {
    // Handle: Destination address must be verified
    console.error(problem.detail);
  }
}