Basic information

GET /{shopId}/coupon-campaigns/{couponCampaignId}

Returns a specific coupon campaign from a shop identified by the provided coupon campaign Id.

Authorisation

OAuth 2.0 Token required with scopes:

coupons_read

URI parameters

Name Type Description
shopId string

The unique identifier of the shop.

Required: true
Example: DemoShop
couponCampaignId string
Required: true

Response attributes

Name Type Description

object of couponCampaign

Response

HTTP 200

Media type application/json

{
  "campaignId": "5774E27E-0AD5-A8F6-7395-AC1532116DFC",
  "identifier": "summer_sale_2019",
  "name": "Summer Sale 2019",
  "currency": "EUR",
  "type": {
    "name": "FIX",
    "waiveShippingCosts": false
  },
  "minimumOrderValue": {
    "taxType": "NONE",
    "formatted": "100.00 €",
    "amount": 100,
    "currency": "EUR"
  },
  "links": [
    {
      "rel": "self",
      "href": "https://pm.epages.com/rs/shops/apidocu/coupon-campaigns/5774E27E-0AD5-A8F6-7395-AC1532116DFC"
    }
  ]
}