PUT api/viewing/{id}/editfeedback

Edit the feedback against a Viewing. Processes this viewing API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Viewing id

integer

Required

Body Parameters

Feedback details

SaveFeedbackCommandDataContract
NameDescriptionTypeAdditional information
FeedbackId

The unique identifier of the related feedback resource.

integer

None.

Feedback

The feedback value.

string

None.

FeedbackDate

The feedback date, expressed as a date and time.

date

None.

NegIds

The unique identifiers of the related neg resources.

Collection of integer

None.

Impression

The impression value.

EnumDataContract

None.

ApplicableToGroupIds

The unique identifiers of the related applicable to group resources.

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": "2026-07-23T08:14:24.8194767Z",
  "NegIds": [
    1,
    2
  ],
  "Impression": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "ApplicableToGroupIds": [
    1,
    2
  ]
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.