List Coupons
HTTP Request
GET https://commerce.zoho.com/store/api/v1/coupons
OAuth Scope
ZohoCommerce.coupons.READ
Request Example
Copiedcurl -i -L -X GET
-H "Authorization:Zoho-oauthtoken ***"
-H "X-com-zoho-store-organizationid:58927961"
'https://commerce.zoho.com/store/api/v1/coupons'
Success Response
Copied{
"code": 0,
"message": "success",
"coupons": [
{
"coupon_id": "1706707000000090056",
"coupon_code": "APRIL100",
"coupon_name": "Spring Sale",
"is_active": true,
"is_active_formatted": true,
"discount_type": "flat",
"discount_type_formatted": "Flat",
"discount_value": 100,
"discount_value_formatted": "$100.00",
"redemption_count": 0,
"status": "active"
},
{
"coupon_id": "1706707000000544002",
"coupon_code": "3JTRJYKUS9GO",
"coupon_name": "WINTER SALE",
"is_active": true,
"is_active_formatted": true,
"discount_type": "flat",
"discount_type_formatted": "Flat",
"discount_value": 100,
"discount_value_formatted": "$100.00",
"redemption_count": 0,
"status": "active"
}
]
}
Show full
Show less