POST
/
items
/
getFeaturedDeals
curl --request POST \
  --url https://v3.minestorecms.com/api/items/getFeaturedDeals \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "Premium Sword",
    "active": true,
    "is_subs": false,
    "original_price": 29.99,
    "price": 24.99,
    "discount": 5,
    "quantityGlobalLimit": 100,
    "quantityGlobalCurrentLimit": 50,
    "quantityUserLimit": 10,
    "quantityUserCurrentLimit": 5,
    "image": "/img/items/1.png",
    "virtual_price": 20,
    "is_virtual_currency_only": false,
    "description": "A powerful sword for the discerning warrior.",
    "is_unavailable": false,
    "in_cart": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successfully retrieved featured deals

The response is of type object[].