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": "6e052b97-fb4b-419c-9d70-9fb97d7f0772",
"CreationDateUtc": "2026-08-28T13:46:04.6134491+00:00",
"CampaignId": "e78be3c7-7f63-4512-96dd-130e83d9004d",
"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>e78be3c7-7f63-4512-96dd-130e83d9004d</CampaignId> <CreationDateUtc>2026-08-28T13:46:04.6134491+00:00</CreationDateUtc> <Id>6e052b97-fb4b-419c-9d70-9fb97d7f0772</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.