Turn email notifications on (no auth)
curl --request POST \
--url https://api.sitespy.app/api/v1/email/enable \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"token": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/email/enable"
payload = { "token": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({token: '<string>'})
};
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
Turn email notifications on (no auth)
Unmutes email notifications for the account the token belongs to.
POST
/
email
/
enable
Turn email notifications on (no auth)
curl --request POST \
--url https://api.sitespy.app/api/v1/email/enable \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"token": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/email/enable"
payload = { "token": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({token: '<string>'})
};
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>"Authorizations
API key for authentication. You can find your API key in the Site Spy dashboard under Settings → API.
Query Parameters
The action token, if not supplied in the body.
Body
application/jsonapplication/x-www-form-urlencoded
Response
HTML result page
The response is of type string.

