POST api/Feedback
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": "cea5c557-ee7a-49cd-8eba-7c6966a8c654",
"CreationDateUtc": "2026-01-21T09:38:58.1868897+00:00",
"CampaignId": "baf2cb25-e2e3-45f8-8327-063171a9fd74",
"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>baf2cb25-e2e3-45f8-8327-063171a9fd74</CampaignId> <CreationDateUtc>2026-01-21T09:38:58.1868897+00:00</CreationDateUtc> <Id>cea5c557-ee7a-49cd-8eba-7c6966a8c654</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.