POST
/
cart
/
getPromoted
curl --request POST \
  --url https://v3.minestorecms.com/api/cart/getPromoted \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "image": "<string>",
    "original_price": 123,
    "price": 123,
    "is_subs": true,
    "quantityGlobalLimit": 123,
    "quantityGlobalCurrentLimit": 123,
    "quantityUserLimit": 123,
    "quantityUserCurrentLimit": 123,
    "is_unavailable": true,
    "is_virtual_currency_only": true,
    "virtual_price": 123
  }
]

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 the promoted items.

The response is of type object[].