Adding viewing feedback
In order to add viewing feedback, you need to call the Viewings.AddViewingFeedbackAsync method on the API client:
var response = await apiClient.Viewings.AddViewingFeedbackAsync(new AddViewingFeedbackRequest
{
Id = 123456,
Feedback = "The feedback details"
});
The response variable will contain
a AddViewingFeedbackResponse object,
which will
indicate whether the viewing feedback was added successfully or not. If it was, there will be
a ViewingDetails object in the Viewing property,
which will contain the information about the viewing that the feedback was added to.
Validation
| Name | Type | Required | Max Length | Other Rules |
|---|---|---|---|---|
| Id | int | Yes | - | Must be greater than 0 and must a valid viewing id for the agent |
| Feedback | string | Yes | - |