v1

latestOpenAPI 3.1.02026-07-249025.5 KB

Get Campaign Details API

The Get Campaign Details API can be used to fetch the products included in a specific Campaign.

post/v1/oauth/api

Request body

querystring required
tagstring required

Response

200

Example response

{
  "data": {
    "campaignDetails": {
      "success": 1,
      "data": [
        {
          "campaignId": 1,
          "campaignName": "Campaign 1",
          "denomination_value": 50,
          "currency_code": "INR",
          "countryName": "India",
          "vouchers": [
            {
              "name": "Cafe Coffee Day",
              "image": "https://res.cloudinary.com/dyyjph6kx/image/upload/gift_vouchers/phpEM8etY_o4j0il.jpg"
            }
          ]
        }
      ]
    }
  }
}