curl --location --request POST '/admin/coupons/add' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Test Coupon 1",
"percentage": 30
}'{
"status": true,
"message": "Success! the coupon code has been created successfully",
"data": {
"name": "Test Coupon 1",
"code": "7PL2P0",
"percentage": 30,
"isToggle": "on",
"_id": "65e9376c0bb9b9242fc6c140",
"createdAt": "2024-03-07T03:41:32.989Z",
"updatedAt": "2024-03-07T03:41:32.989Z",
"__v": 0
}
}