POST api/v1/Offers/UpdateStatistic/{offerID}

Update statistic

Request Information

Parameters

NameDescriptionAdditional information
offerID

Define this parameter in the request URI.

updateStatistic

Define this parameter in the request body.

Request body formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "statistic": "sample string 1",
  "count": 2
}

application/xml, text/xml

Sample:
<UpdateStatisticDTO>
  <Statistic>sample string 1</Statistic>
  <Count>2</Count>
</UpdateStatisticDTO>

Response Information

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean>true</boolean>