Edit in GitHubLog an issue
Thanks to comwrap GmbH for contributing this topic!

Step 2. Create the configurable and simple products

By providing configurable and simple product information, you can use the bulk API to create all necessary products with a single call.

Configurable product

Some notes about the configurable product payload example:

  • We have the information we need to create the Champ Tee configurable product.
  • The sample payload does not contain the price or the size, as these are defined in the simple products section.
  • The visibility attribute is set to 4, which allows customers to find the product by browsing or searching. Each simple product defined in the payload can override the visibility attribute.

Simple products

The payloads for creating a simple product and a configurable product are identical, with the following exceptions:

  • The simple product sku appends the configurable option (the size in this tutorial) to the configurable product sku.
  • The name indicates the size.
  • The type_id is set to simple.
  • The visibility is set to 1, indicating the simple product should not be displayed on the store.
  • The price and size attributes are specified.

Although it is not required, the simple product payload includes stock_item information. By default, the Luma store hides out-of-stock items, so adding stock makes the Champ Tee visible on the website.

Endpoint:

POST <host>/rest/default/async/bulk/V1/products

The payload contains both the configurable product and the simple products.

Copied to your clipboard
{
"bulk_uuid": "c08a2b99-4be2-4b28-af7e-56e9664e0b39",
"request_items": [
{
"id": 0,
"data_hash": "73170608b04187fe5939ece183711eff1bf9c4f4e30fc334db2affed1055c3f1",
"status": "accepted"
},
{
"id": 1,
"data_hash": "73170608b04187fe5939ece183711eff1bf9c4f4e30fc334db2affed1055c3f1",
"status": "accepted"
},
{
"id": 2,
"data_hash": "73170608b04187fe5939ece183711eff1bf9c4f4e30fc334db2affed1055c3f1",
"status": "accepted"
}
],
"errors": false
}

Verify this step

  • Log in to the Luma website and select Catalog > Products. The product appears in the grid.

    Product page with configurable product

  • On the Luma storefront page, search for Champ. No results are returned.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.