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.
id
integer

ID of the item.

name
string

Name of the item.

image
string

URL of the item's image.

original_price
number

The original price of the item.

price
number

The current promoted price of the item.

is_subs
boolean

Indicates if the item is a subscription.

quantityGlobalLimit
integer | null

The global quantity limit for the item.

quantityGlobalCurrentLimit
integer | null

The current value of the global quantity limit.

quantityUserLimit
integer | null

The user-specific quantity limit for the item.

quantityUserCurrentLimit
integer | null

The current value of the user-specific quantity limit.

is_unavailable
boolean

Indicates if the item is unavailable.

is_virtual_currency_only
boolean

Indicates if the item is virtual currency only.

virtual_price
number | null

The virtual price of the item.