GET
/
v1
/
brands
/
{brand_id}
/
inventory
/
{id}
/
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/brands/{brand_id}/inventory/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "connection": "conn-12345",
  "variant": "SKU-001-BLUE",
  "inventory_policy": "managed",
  "inventory": "150",
  "inventory_updated_at": "2024-04-15T12:00:00Z",
  "inventory_last_submitted_at": "2024-04-15T12:05:00Z",
  "brand_inventory_updated_at": "2024-04-14T08:30:00Z",
  "discontinued": false,
  "discontinued_updated_at": "2024-03-01T10:00:00Z",
  "replenishable": true,
  "sellable": "yes",
  "sellable_updated_at": "2024-04-10T09:15:00Z",
  "estimated_availability_date": "2024-05-01",
  "locations": "Warehouse A, Warehouse B"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

brand_id
number
required

The unique brand ID. In the Dropship UI this is called the Supplier ID. To find your Supplier ID, click your supplier name in the top nav.

id
integer
required

The unique inventory item identifier. This ID is automatically generated when new inventory is created.

Example:

2002

Response

200 - application/json

OK

The response is of type object.