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