POST api/feedback/complete

Request Information

URI Parameters

None.

Body Parameters

FeedbackDto
NameDescriptionTypeAdditional 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": "c6b9bdfc-76c1-46c5-8d38-91af1d406923",
  "CreationDateUtc": "2025-12-06T02:25:03.9118822+00:00",
  "CampaignId": "5c8c041b-d9e6-4c60-9f21-c61f1649042e",
  "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>5c8c041b-d9e6-4c60-9f21-c61f1649042e</CampaignId>
  <CreationDateUtc>2025-12-06T02:25:03.9118822+00:00</CreationDateUtc>
  <Id>c6b9bdfc-76c1-46c5-8d38-91af1d406923</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.