POST api/viewing/{id}/recordfeedback
Record the feedback against a Viewing.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Viewing id |
integer |
Required |
Body Parameters
Feedback details
SaveFeedbackCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedbackId | integer |
None. |
|
| Feedback | string |
None. |
|
| FeedbackDate | date |
None. |
|
| NegIds | Collection of integer |
None. |
|
| Impression | EnumDataContract |
None. |
|
| ApplicableToGroupIds | Collection of integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"FeedbackId": 1,
"Feedback": "sample string 1",
"FeedbackDate": "2025-11-13T16:09:45.7604097Z",
"NegIds": [
1,
2
],
"Impression": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ApplicableToGroupIds": [
1,
2
]
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.