Hello. I have found the following API endpoint. GET: catalog/product/{product-id} {
"id": "8a8082c45aa81b51015ad5a2d07d0e89",
"sku": "SKU-00000987",
"name": "ABC",
"description": "",
"category": "Base Products",
"effectiveStartDate": "2017-01-01",
"effectiveEndDate": "2020-01-01",
"productRatePlans": [
// productRatePlans
],
"success": true
} If we can use it, please update API document. Or it was available before, but is it deprecated now?
... View more
When I retrive products, I use Get Product Catalog of the below endpoint. https://www.zuora.com/developer/api-reference/#operation/GET_Catalog But, I want to retrive a specific product. Do you have any sugesstions? I hope the below new endopoint. GET: /v1/catalog/products/{product_id} {
id: xxx
name: xxxx
.... productRatePlans: [ ... ] ....
success: true
}
... View more
There is incorrect response of CreateBillingPreview. https://www.zuora.com/developer/api-reference/#operation/POST_BillingPreview According to the api reference, processingType of invoiceItems is the number, for example 0, 1, 2 and 3. But, the response is the string, for example Charge. But, processingType of creditMemoItems is the string. what is correct?
... View more