Last updated 1 year ago
Use this to get a domain verification to code to verify domain ownership.
Send the request with githubId and domain.
successful operation
const response = await fetch('https://api-a.meroku.store/domainverification/getVerificationId', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "githubId": "text", "domain": "text" }), }); const data = await response.json();
{ "verificationCode": "text", "domain": "text" }