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": "5eb24ad4-68bb-4436-8be0-9b51102073dc",
"CreationDateUtc": "2026-07-04T14:01:53.7055717+00:00",
"CampaignId": "26dceacd-3c4a-4d0c-b95d-58279ea29592",
"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>26dceacd-3c4a-4d0c-b95d-58279ea29592</CampaignId> <CreationDateUtc>2026-07-04T14:01:53.7055717+00:00</CreationDateUtc> <Id>5eb24ad4-68bb-4436-8be0-9b51102073dc</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.