[Vuejs]-How can i retrieve all products containing a specific attribute and attribute term using the woocommerce-rest-api

1👍

Update: I found out how do it.

const response = await woocommerceApi.get("products?attribute=pa_[attributeslug]&attribute_term=[attribute term id]", {
      per_page: 100,
    });

without the []

👤Lord

Leave a comment