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?
Asked
Active
Viewed 113 times
2 Answers
0
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'

Andre Polykanine
- 3,291
- 18
- 28
0
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.

Zsolt Meszaros
- 21,961
- 19
- 54
- 57

Rajeev
- 29
- 1
- 7