Retrieve

Returns information for a single product by its unique identifier.

🔐

Authentication

✔️ Application API Scope

✔️ Storefront API Scope

Response Body Definitions

NameTypeDescriptionExample
merchantstringMerchant ID"ac4f7938383a11e89ecbbc764e1107f2"
groupsarrayArray of group objects
namestringProduct name"test"
pricestringProduct price"12.99"
image_urlstringProduct image URL"ordergroove.com/product/product_id"
detail_urlstringProduct detail image URL"ordergroove.com/product/product_id"
external_product_idstringMerchant product ID"62900-W01"
skustringProduct SKU"123456789"
autoship_enabledbooleanAutoship option enabled for product: enabled = truefalse
premier_enabledinteger0
createdstringDate of product creation"2017-02-29 12:00:00"
last_updatestringDate of last product update"09/3099"
livebooleanAccount status: active = TrueTrue
discontinuedbooleanProduct status:
discontinued = True
False
offer_profilestringOffer profile associated with product"OfferProfileId"
extra_datastringRaw JSON string that should be JSON.parse() as key/value store for any extra information."{"some": "extra", "fields": "here"}"
incentive_groupstring
product_typestringProduct type"standard"
autoship_by_defaultbooleantrue
everyintegerNumber of periods30
every_periodintegerType of period1

When the query param ?include_product_selection_rules=true is provided for a rotating product we will return all the selection rule configuration:

[
   {
      "public_id":"e1a61e620ed411ef8740767250df1ed7",
      "selection_rule_type":"TIME_WINDOW",
      "product_selection_list_elements":[
         {
            "public_id":"e1a626000ed411ef8740767250df1ed7",
            "product":"48398751432995",
            "starting_date":"2024-05-01T00:00:00Z"
         },
         {
            "public_id":"e1a62b140ed411ef8740767250df1ed7",
            "product":"48398752317731",
            "starting_date":"2024-06-01T00:00:00Z"
         },
         {
            "public_id":"e1a62fe20ed411ef8740767250df1ed7",
            "product":"48398760149283",
            "starting_date":"2024-07-01T00:00:00Z"
         }
      ]
   }
]
[
   {
      "public_id":"e1a61e620ed411ef8740767250df1ed7",
      "selection_rule_type":"ORDINAL",
      "product_selection_list_elements":[
         {
            "public_id":"e1a626000ed411ef8740767250df1ed7",
            "product":"48398751432995",
            "starting_ordinal":"0"
         },
         {
            "public_id":"e1a62b140ed411ef8740767250df1ed7",
            "product":"48398752317731",
            "starting_ordinal":"1"
         },
         {
            "public_id":"e1a62fe20ed411ef8740767250df1ed7",
            "product":"48398760149283",
            "starting_ordinal":"4"
         }
      ]
   }
]
Language