Retrieve Coupon Details
GET /user/coupons/{id}/
Use the GET /user/coupons/{id}/
endpoint to retrieve the details of a specific coupon by providing its unique ID.
Parameters
Name
Description
id
Required - A unique integer value identifying the coupon. (Path Parameter)
Responses
200 OK
Example Response
{
"id": 123,
"code": "DISCOUNT2024",
"value": "10.00",
"expiration_date": "2024-12-31T23:59:59Z"
}
Last updated