List all products set to dropship

Hey!

Is there a way to get a list of all the products that are marked to dropship

?
I tried the following, with no success:

GET ../api.ordoro.com/product?dropship=true
GET ../api.ordoro.com/product?dropship=TRUE
GET ../api.ordoro.com/product?dropship=1
GET ../api.ordoro.com/produc/dropship/1

Thanks!

Sergio

Hey @sergio.nader

The /product?dropship=true endpoint should work correctly.

If you could post the x-api-request-id as well as the x-apiverson-request-id in the response headers and send us the error you are receiving then we can help you diagnose the issue.

Hi @sergio.nader ,

I just ran into this the other day as well. I think you just need a trailing slash for the product endpoint.
So instead of:
GET ../api.ordoro.com/product?dropship=true
You should use:
GET ../api.ordoro.com/product/?dropship=true

Hey @savanna and @syork, thanks for your replies.

I was missing the trailing slash as @savanna has point,

Thanks again!