Viewings: Update viewing feedback

Update viewing feedback

Request - PUT https://api-uat.vtopenview.com/viewings/{viewingId}/feedback

You will need to supply a request body with this method.
You will need to include your access token upon making a request. For more information, see the authentication and authorization page.

Example request with authorization:

curl -- PUT Base URI: https://api-uat.vtopenview.com/viewings/{viewingId}/feedback
--header "Authorization: Bearer MTQ0NjJkZmQ5OTM2NDE1ghNNBiuyUYUN"

Request Body
Example request body:

Content-Type: application/json
{
"ViewingFeedbackId": long, //Optional - leave empty to add new feedback
"LocationStar": integer,
"ValueForMoneyStar": integer,
"AttributesStar": integer,
"PrivateNotes": "string",
"PublicNotes": "string"
}

Response

If successful, this method returns a 200 Status code with the following

Example response:

HTTPS 200 Created
Content-Type: application/json
{
"ViewingFeedbackId": long,
"LocationStar": integer,
"ValueForMoneyStar": integer,
"AttributesStar": integer,
"PrivateNotes": "string",
"PublicNotes": "string"
}