curl -X POST "https://heimdall.qa.zoniqx.com/auth/email/resend-verification" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com"
}'const response = await fetch("https://heimdall.qa.zoniqx.com/auth/email/resend-verification", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
"email": "user@example.com"
}),
});
const data = await response.json();type AuthController_resendVerificationResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/auth/email/resend-verification", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
"email": "user@example.com"
}),
});
const data: AuthController_resendVerificationResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/auth/email/resend-verification"
payload = {
"email": "user@example.com"
}
response = requests.post(url, json=payload)
data = response.json()