Send to Webflow Ecommerce 404 - Not Found Error

Hello everyone,

I got a problem with sending to Webflow. I’m using the Send to Api because I want to update E-Commerce which is sadly not supported by the Send to Webflow integration.

I’m getting a 404 not found error.

Can someone help me with this?

Thank you.

Bildschirmfoto 2021-03-01 um 20.44.35 Bildschirmfoto 2021-03-01 um 20.44.04 Bildschirmfoto 2021-03-01 um 20.43.31 Bildschirmfoto 2021-03-01 um 20.42.17

Hey @Lars_Hofstetter :wave:

Welcome to the community! What exactly are you trying to update in your ecommerce store? Is it a list of products?

You should be able to pull in the collection items using the collections endpoint above to get your product and sku IDs. Using the “Pull from Webflow” step, select all of my sites from the dropdown to return your site ID.

You can then try swapping them into this endpoint:
PATCH /sites/:site_id/products/:product_id/skus/:sku_id

Then, send this as your JSON body:

{
        "fields": {
          "name": "{name}"
        }
      }

Let me know if that helps!