Submit feedback using an exact signed change token
curl --request POST \
--url https://api.sitespy.app/api/v1/change-feedback \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/change-feedback"
payload = { "token": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({token: '<string>'})
};
fetch('https://api.sitespy.app/api/v1/change-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Change Feedback
Submit feedback using an exact signed change token
POST
/
change-feedback
Submit feedback using an exact signed change token
curl --request POST \
--url https://api.sitespy.app/api/v1/change-feedback \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'import requests
url = "https://api.sitespy.app/api/v1/change-feedback"
payload = { "token": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({token: '<string>'})
};
fetch('https://api.sitespy.app/api/v1/change-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
