Ask whether to turn email notifications on (no auth)
curl --request GET \
--url https://api.sitespy.app/api/v1/email/enable \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/enable"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/enable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Email Verification
Ask whether to turn email notifications on (no auth)
Renders the confirmation page for the enable link carried by the welcome email. Changes nothing; the POST the page submits does.
GET
/
email
/
enable
Ask whether to turn email notifications on (no auth)
curl --request GET \
--url https://api.sitespy.app/api/v1/email/enable \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/enable"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/enable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"
