Skip to main content
GET
/
stores
/
{store_id}
/
products
Get Store Products
curl --request GET \
  --url https://api-dev.monyfix.tech/stores/{store_id}/products \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "price": 123,
    "is_active": true,
    "quantity": 123,
    "store": {
      "id": 123,
      "name": "<string>",
      "is_blogger": true,
      "seller_type": "<string>",
      "logo_url": "<string>"
    },
    "format_price": "<string>",
    "platform_price": 123,
    "detail_desc": "<string>",
    "sku": "<string>",
    "question_id": 123,
    "attribute_values": [],
    "assets": [],
    "in_favorites": false,
    "promo_codes": [
      {
        "id": "<string>",
        "promo_code": "<string>",
        "quantity": 123,
        "discount_percent": 123,
        "is_for_winner": true,
        "expired_at": "2023-11-07T05:31:56Z"
      }
    ],
    "category": {
      "id": 123,
      "name": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

store_id
integer
required

Response

Successful Response

id
string
required
name
string
required
price
number
required
is_active
boolean
required
quantity
integer
required
store
ProductUpcomingRoundStoreGetResponse · object
required
format_price
string
required
platform_price
number | null
detail_desc
string | null
sku
string | null
question_id
integer | null
attribute_values
GroupedAttributeValue · object[] | null
assets
UnifiedItemRoundAssetResponse · object[] | null
in_favorites
boolean | null
default:false
promo_codes
ProductPromoCodeGetResponse · object[] | null
category
ProductCategoryGetResponse · object