You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're trying to load our categories and products through REST. Everything is added nicely and is visible in the backend, but it doesn't appear on the website. The option "Display Out of Stock Products" is put on "Yes".
After saving the product in the admin OR re-enabling it in the admin, it does show up!
We're trying to load our categories and products through REST. Everything is added nicely and is visible in the backend, but it doesn't appear on the website. The option "Display Out of Stock Products" is put on "Yes".
After saving the product in the admin OR re-enabling it in the admin, it does show up!
Steps to reproduce:
url: magento2/rest/V1/products
{
"product": {
"sku": "TEST",
"name": "TEST",
"visibility": 4,
"type_id": "simple",
"price": 3.62,
"status": 1,
"attribute_set_id": 4,
"custom_attributes": [
{
"attribute_code": "description",
"value": "TEST"
}
]
}
}
url: magento2/rest/V1/categories/[CATEGORY_ID]/products
{
"productLink": {
"sku": "TEST",
"category_id": [CATEGORY_ID]
}
}
After there steps the product is NOT visible on the website!
The text was updated successfully, but these errors were encountered: