API for search products from zuora

138 views Asked by At

There is an API(v1/catalog/products) for get all the products from zuora. Likewise is there any API available for search product by product-name from zuora?

2

There are 2 answers

0
Andre Polykanine On

It seems, there is not.
I use Zoql for that (I search by SKU, but it's the same):

select Id from Product where Sku = '%s'
0
Rajeev On

You can use the /v1/action/query API call which lets you write the query string in the body of the request. This query string can also have filters.