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": "1fdfb399-34ad-4d40-bbc3-a3a03f67f3b1",
"CreationDateUtc": "2026-01-21T09:38:53.7395335+00:00",
"CampaignId": "53ac3d55-3d8c-458a-8cdf-0f03bc960862",
"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>53ac3d55-3d8c-458a-8cdf-0f03bc960862</CampaignId> <CreationDateUtc>2026-01-21T09:38:53.7395335+00:00</CreationDateUtc> <Id>1fdfb399-34ad-4d40-bbc3-a3a03f67f3b1</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.