- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Issue: When trying to trigger a BIlling Preview, this error is received-
"API exception while generating the Billing Preview Run: Error Reason Code:59880060 Message: There is already a billingPreview run scheduled for Batch1"
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
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.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
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.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √