POST api/feedback/complete
Request Information
URI Parameters
None.
Body Parameters
FeedbackDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
|
| CreationDateUtc | date |
Required |
|
| CampaignId | globally unique identifier |
Required |
|
| Page | integer |
Required |
|
| Variable | string |
None. |
|
| isCompleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "407cac76-52d5-4265-8d57-b777154862cc",
"CreationDateUtc": "2025-12-11T08:29:45.441039+00:00",
"CampaignId": "79ff2fdd-2425-4bf3-bc3a-14d9f12844d6",
"Page": 4,
"Variable": "sample string 5",
"isCompleted": true
}
application/xml, text/xml
Sample:
<FeedbackDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models"> <CampaignId>79ff2fdd-2425-4bf3-bc3a-14d9f12844d6</CampaignId> <CreationDateUtc>2025-12-11T08:29:45.441039+00:00</CreationDateUtc> <Id>407cac76-52d5-4265-8d57-b777154862cc</Id> <Page>4</Page> <Variable>sample string 5</Variable> <isCompleted>true</isCompleted> </FeedbackDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.