post https://api.ingresse.com/v2/coupon/coupons
Following these instructions you will be able to create fixed-whitelabel discount coupon
There are two types of discount coupon available for whitelabel integrations. Let's first take a look how to create a fixed-whitelabel discount coupon.
Fixed-whitelabel discount coupon
To create a fixed-whitelabel discount coupon, it's basically necessary to POST the following request to https://api.ingresse.com/v2/coupon/coupons
{
    "category": "whitelabel",
    "type": "fixed",
    "discount": "50",
    "name": "fixed-whitelabel",
    "usageLimit": 50,
    "startUsage": "2019-08-01T17:38:00-3:00",
    "endUsage": "2019-12-31T18:38:00-3:00",
    "targetEvents": [
        {
            "eventId": 100
        },
        {
            "eventId": 200
        }
    ]
}Dynamic-whitelabel discount coupon
Now, if you have to create a dynamic-whitelabel discount coupon (for example %) you will have to POST the following request
{
    "category": "whitelabel",
    "type": "dynamic",
    "discount": "50",
    "name": "dynamic-whitelabel",
    "usageLimit": 50,
    "startUsage": "2019-08-01T17:38:00-3:00",
    "endUsage": "2019-12-31T18:38:00-3:00",
    "targetEvents": [
        {
            "eventId": 100
        },
        {
            "eventId": 200
        }
    ]
}