Skip to content

Coupons

Apply coupon

Apply coupon to order

Set cookie: session_id value what we got from authenticate

POST /api/v1/store/order/apply-coupon

Headers:

{
"Content-Type": "application/json",
"Cookie": "session_id=4e21fd7bf236b7d283b471254b8c94a57c8a3a08"
}

Request Body:

{
"order_id": 34,
"coupon_code": "0446-d549-459d"
}

Response:

{
"result": true
}

Remove coupon

Remove coupon from order

Set cookie: session_id value what we got from authenticate

POST /api/v1/store/order/remove-coupon

Headers:

{
"Content-Type": "application/json",
"Cookie": "session_id=4e21fd7bf236b7d283b471254b8c94a57c8a3a08"
}

Request Body:

{
"order_id": 34,
"coupon_code": "0446-d549-459d"
}

Response:

{
"result": true
}

Get Order Coupons

Return list of gift cards sale orders

Set cookie: session_id value what we got from authenticate

POST /api/v1/store/order/get-gift-cards

Headers:

{
"Content-Type": "application/json",
"Cookie": "session_id=4e21fd7bf236b7d283b471254b8c94a57c8a3a08"
}

Request Body:

{
"order_id": 34,
"coupon_code": "0446-d549-459d"
}

Response:

{
"result": true
}