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": "68f3f798-2c15-485e-9926-f1fe981b36e8",
"CreationDateUtc": "2025-12-06T02:25:04.552713+00:00",
"CampaignId": "f05f1c53-6cdc-4339-8f26-dde57bfe1321",
"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>f05f1c53-6cdc-4339-8f26-dde57bfe1321</CampaignId> <CreationDateUtc>2025-12-06T02:25:04.552713+00:00</CreationDateUtc> <Id>68f3f798-2c15-485e-9926-f1fe981b36e8</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.