The Item Details endpoint is a lightweight solution for performing two key actions:
The Item Details API is disabled by default. If you wish to set stock or sale status via API, please contact your Customer Experience representative to enable this feature.
<https://api.findmine.com/api/v3/item-details>
<aside> 📢 For setting stock or sale status, the POST method must be used.
</aside>
POST
Posts must be content-type: application/json
 and the passed data must be in JSON format. The responses are plain JSON.
Parameter | Required | Type | Description |
---|---|---|---|
application | Yes | String | The application parameter is a unique identifier provided to you at the start of integration. This identifier is not an authorization secret, it is safe and required to embed in your public HTML. Example:Â **application=AB1212CDABCD |
product_* | Yes | String(s) | Product identifying information. One or more strings that uniquely identify each visually distinct product, most often a product identifier and a color identifier. The exact parameter names will be configured for your integration during onboarding, and reflect the specific product variation structure of your catalog. These parameters must match identifiers in the product catalog feed exactly. Example: product_id=P-12&product_color_id=C-34 |
Example:Â product_id=P-12 |
Note that these parameters are specifically for setting stock or pricing attributes. Any request attempting to set these parameters must use the POST
method.
Parameter | Required | Type | Description |
---|---|---|---|
product_in_stock | Yes | Boolean | Is the product in stock and available for purchase? true  if in stock and available for purchase. false  if out of stock or otherwise unavailable for purchase. Example: **product_in_stock=false |
product_on_sale | Yes | Boolean | Is the product currently on sale? true  if an original price and discounted price are being shown, false  if the product is still at the original price. |
Successful Stock Update