Can I import data from WooCommerce?

Hi, it looks like you don’t have an integration with WooCommerce. Can I import data from them? If so, how?

You can use our API Import step to pull in the data from the WooCommerce API. The first step is to generate a consumer key and a consumer secret, by following this guide: https://docs.woocommerce.com/document/woocommerce-rest-api/

Once you have that, use an API Import. Set the auth to Username and Password, and use the key as the username and the secret as the password.

Then you will just need to find the URL for whatever thing you want to import! For example, orders would be https://example.com/wp-json/wc/v3/orders - but replace “example” with your actual site. I know that because I looked at the docs here: https://woocommerce.github.io/woocommerce-rest-api-docs/#list-all-orders

1 Like

Thanks! That worked!