Resend verification email
curl --request POST \
--url https://api.sitespy.app/api/v1/email/resend \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/resend"
headers = {"x-api-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/resend', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Verification email sent",
"email": "user@example.com",
"expires_in_hours": 24
}Email Verification
Resend verification email
Resend the verification email for the email address associated with your API key.
POST
/
email
/
resend
Resend verification email
curl --request POST \
--url https://api.sitespy.app/api/v1/email/resend \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/resend"
headers = {"x-api-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/resend', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Verification email sent",
"email": "user@example.com",
"expires_in_hours": 24
}
