A single batch of customer accounts can only have one billing preview run at a time.
To know the status of any existing BillingPreviewRun you can use the following query on BillingPreview using Postman: https://rest.apisandbox.zuora.com/v1/action/query Request { “queryString”: “select Id, Status from BillingPreviewRun” } Response { “records”: [ { “Status”: “Completed”, “Id”: “2c92c0fb6446273101645dac042e51f7” }, { “Status”: “Completed”, “Id”: “2c92c0fb64c61d3e0164cf41aa8e6d54” }, { “Status”: “Completed”, “Id”: “2c92c0fb6a8c9811016ab08f0cf90941” } ], “size”: 3, “done”: true }
You can also use Generic API Utility tool to query on BillingPreview Object
The response is as follows:
Hope this article was helpful!
Thanks.
... View more