POST api/viewing/bulkcompleteviewingfollowups
Endpoint to Complete feedback for multiple viewing follow ups. Processes this viewing API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The bulk complete feedback command data contract supplied with the request.
BulkCompleteFeedbackCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| ViewingIds |
The unique identifiers of the related viewing resources. |
Collection of integer |
None. |
| Feedback |
The feedback value. |
string |
None. |
| Filter |
The filter value. |
FollowUpListFilterDataContract |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"ViewingIds": [
1,
2
],
"Feedback": "sample string 1",
"Filter": {
"EventTypes": [
"sample string 1",
"sample string 2"
],
"EventStatuses": [
"sample string 1",
"sample string 2"
],
"RoleTypes": [
"sample string 1",
"sample string 2"
],
"SystemStatuses": [
"sample string 1",
"sample string 2"
],
"EventBranchId": "sample string 1",
"DateFrom": "2026-08-04T23:19:39.2853803Z",
"DateTo": "2026-08-04T23:19:39.2853803Z",
"Date": {
"FromStaticDate": "2026-08-04T23:19:39.2853803Z",
"ToStaticDate": "2026-08-04T23:19:39.2853803Z",
"PredefinedDateRange": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"FromExpression": "sample string 1",
"ToExpression": "sample string 2",
"Id": 3
},
"OwningTeamIds": [
1,
1
],
"AttendingNegotiatorIds": [
1,
1
],
"BookedByNegotiatorIds": [
1,
1
],
"AttendingGroupIds": [
1,
1
],
"Sort": 0,
"VendorFeedbackReviewed": true,
"Name": "sample string 2",
"CustomFilterConfig": "sample string 3",
"BranchId": 1,
"BranchIds": [
1,
2
],
"EventBranchIds": [
1,
2
],
"Order": 0,
"SearchTerm": "sample string 4",
"FilterType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ShowDeleted": true,
"ShowCancelled": true,
"OwningTeamId": 7,
"Id": 8
}
}
Response Information
Resource Description
The response returned after the operation completes.
JobStatusDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| JobReference |
The job reference globally unique identifier. |
globally unique identifier |
None. |
| JobStatus |
The job status classification. |
JobStatus |
None. |
| JobPercentageCompleted |
The job percentage completed value. |
integer |
None. |
| JobStatusText |
The job status text value. |
string |
None. |
| UsageToken |
The usage token globally unique identifier. |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"JobReference": "959c92cb-6c2b-463c-bfaf-6cfd7fcf671d",
"JobStatus": 0,
"JobPercentageCompleted": 2,
"JobStatusText": "sample string 3",
"UsageToken": "65187a87-8c07-49c9-9b66-6254507a6e11"
}