Forward DNS Records

POST
https://reloop.sh/api/domain/v1/verify/:domain_id/forward-dns

Path Parameters

domain_idstringRequired

Body Parameters

emailstringRequired
const response = await fetch("https://reloop.sh/api/domain/v1/verify/{domain_id}/forward-dns", {
  method: "POST",
  headers: {
    "Authorization": "Bearer re_123456789",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
  "email": "email_value"
})
});

const data = await response.json();
{
  "success": true
}

Was this page helpful?

Edit this page