Skip to main content
GET
/
products
/
sku
/
{sku}
/
bundles
Get Products in a Bundle by SKU
curl --request GET \
  --url https://api.fabric.inc/v3/products/sku/{sku}/bundles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "5b7329dfd5288b0011332399",
      "sku": "QWERFFVVV",
      "type": "ITEM",
      "quantity": 3,
      "isActive": true,
      "hasDraft": true,
      "hasLive": true,
      "status": "LIVE",
      "attributes": [
        {
          "id": "8b7329dfd5288b00113323b3",
          "name": "Color",
          "type": "string",
          "isDeleted": false,
          "value": "blue",
          "isInherited": true
        }
      ],
      "localizedProperties": {
        "en-US": {
          "attributes": [
            {
              "id": "7e7329dfd5288b0011332311",
              "name": "Color",
              "type": "string",
              "isDeleted": false,
              "value": "blue",
              "isInherited": true
            }
          ]
        },
        "en-IN": {
          "attributes": [
            {
              "id": "723f29dfd5288b0011332311",
              "name": "Colour",
              "type": "string",
              "isDeleted": false,
              "value": "blue",
              "isInherited": true
            }
          ]
        }
      },
      "categoryId": "7f7329dfd5288b0011332317",
      "createdAt": "2021-09-14T22:10:30.618Z",
      "updatedAt": "2021-09-14T22:10:30.618Z"
    }
  ],
  "offset": 5,
  "limit": 10,
  "count": 100
}

Authorizations

Authorization
string
header
required

Headers

x-fabric-tenant-id
string
Example:
x-fabric-request-id
string
Example:

Path Parameters

sku
string
required

Query Parameters

offset
integer
default:0
Example:
limit
integer
default:10
Example:
locales
string
Example:
statuses
string
default:DRAFT,LIVE
Example:

Response

offset
integer
default:0
Example:
limit
integer
default:10
Example:
count
integer
Example:
data
object[]