GET
/coupons/channel/{channelLinkId}/coupons
curl \
--request GET 'https://api.staging.deliverect.com/coupons/channel/{channelLinkId}/coupons' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"total": 1,
"page": 1,
"size": 50,
"items": [
{
"code": "D23",
"isEnabled": true,
"type": "item",
"isHidden": false,
"discounts": [
{
"type": "flat_off",
"value": 1234,
"currency": "EUR",
"plus": [
"ABC-123",
"DEF-456"
],
"display": "12.34"
}
],
"conditions": [
{
"type": "max_uses_per_coupon",
"maxUsesPerCoupon": 3
},
{
"type": "locations",
"locationIds": [
"68434f75202fe35540a31c23"
]
}
],
"description": "my coupon",
"id": "690e1ef7a856cfe57553a9e1",
"accountId": "681cbecf4ae843d500e25e47",
"timesUsed": 0,
"created": "2025-11-07T16:31:51.508000Z",
"updated": "2025-11-07T16:31:51.509000Z"
}
]
}
Response examples (404)
{
"code": "coupon_not_found",
"message": "coupon not found",
"context": {}
}