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
id
integer
Example:

1

name
string
Example:

"Premium Sword"

active
boolean
Example:

true

is_subs
boolean
Example:

false

original_price
number
Example:

29.99

price
number
Example:

24.99

discount
number
Example:

5

quantityGlobalLimit
integer | null
Example:

100

quantityGlobalCurrentLimit
integer | null
Example:

50

quantityUserLimit
integer | null
Example:

10

quantityUserCurrentLimit
string | null
Example:

5

image
string | null
Example:

"/img/items/1.png"

virtual_price
number
Example:

20

is_virtual_currency_only
boolean
Example:

false

description
string
Example:

"A powerful sword for the discerning warrior."

is_unavailable
boolean
Example:

false

in_cart
boolean
Example:

true