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": "436bfd2b-34e0-4a3d-ad9d-eb1428390486",
"CreationDateUtc": "2026-07-04T14:02:29.7609542+00:00",
"CampaignId": "30c16047-85b8-4b55-a49e-23d75d65d4b4",
"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>30c16047-85b8-4b55-a49e-23d75d65d4b4</CampaignId> <CreationDateUtc>2026-07-04T14:02:29.7609542+00:00</CreationDateUtc> <Id>436bfd2b-34e0-4a3d-ad9d-eb1428390486</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.