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": "b700527b-4118-4d59-8355-da62e5b2a5ff",
"CreationDateUtc": "2026-01-21T09:48:12.6197334+00:00",
"CampaignId": "4291a5a3-cc95-42e9-aa82-ab15c97e54df",
"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>4291a5a3-cc95-42e9-aa82-ab15c97e54df</CampaignId> <CreationDateUtc>2026-01-21T09:48:12.6197334+00:00</CreationDateUtc> <Id>b700527b-4118-4d59-8355-da62e5b2a5ff</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.