Open the non-mutating signed feedback landing page
curl --request GET \
--url https://api.sitespy.app/api/v1/change-feedbackimport requests
url = "https://api.sitespy.app/api/v1/change-feedback"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sitespy.app/api/v1/change-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Change Feedback
Open the non-mutating signed feedback landing page
GET
/
change-feedback
Open the non-mutating signed feedback landing page
curl --request GET \
--url https://api.sitespy.app/api/v1/change-feedbackimport requests
url = "https://api.sitespy.app/api/v1/change-feedback"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.sitespy.app/api/v1/change-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Query Parameters
Response
200 - text/html
HTML feedback landing page
The response is of type string.

