InventoryProducts
List suppliers of an Inventory Product
Returns the paginated list of suppliers associated with a single inventory product. Each entry describes the supplier-side ID (e.g. their SKU), the default order quantity, and the unit price.
get/inventory/products/{productId}/suppliers
Query parameters
per_pageinteger
The number of results to return per page
pageinteger
The page to retrieve results from
Response
Product suppliers were successfully retrieved.
Example response
{
"data": [
{
"product_name": "Blissful Body Butter",
"supplier_name": "Elemis",
"order_quantity": 10,
"unit_price": 200,
"currency": "gbp"
}
],
"meta": {
"from": 1,
"to": 2,
"total": 2,
"current_page": 1,
"last_page": 2,
"per_page": 15,
"path": "http://example.com/api"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.