I am trying to retrieve products, which have a certain keyword in their title.
It is possible to search by full title like this:
/admin/api/2019-10/products.json?title=Name of my product
But I want to use wildcard/regex expression? How can I retrieve products which have, let's say "red", in their title?
Edit:
Example products:
- Red car
- Red book
- Brown table
query: /admin/api/2019-10/products.json?title=Red
Expected result: Red car and Red book
But it returns an empty array.
2019-07, I was testing it on2019-04so it was working for me then. I deleted the old answer, see the new one - Vladimir