- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Question or Problem Statement:
I want to mass delete amendments in a Zuora tenant. For example, I have a lot of cancellation amendments, I want to mass delete them.
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.
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Solution:
a).To collect the amendment Id with Data Source Export.
Then I got the 3 amendment Ids:
2c92c0f962943fe10162990874671ed7
2c92c0f962943fd901629900e8921a03
2c92c0f862942cae0162990701f36daf
b).To assemble the SOAP API Delete() call in a SOAP client, e.g. Boomerang.
Since I am testing it in my sandbox, so the end point is: https://apisandbox.zuora.com/apps/services/a/84.0. If you are attempting to delete amendments, the end point should be https://api.zuora.com/apps/services/a/84.0. You will also need to generate a token by using soap Login call.
Supporting References:
Boomerang:
https://chrome.google.com/webstore/detail/boomerang-soap-rest-clien/eipdnjedkpcnlmmdfdkgfpljanehloah...
https://knowledgecenter.zuora.com/DC_Developers/G_SOAP_API/E1_SOAP_API_Object_Reference/Amendment
https://knowledgecenter.zuora.com/DC_Developers/G_SOAP_API/E_SOAP_API_Calls/delete_call
https://knowledgecenter.zuora.com/DC_Developers/G_SOAP_API/E_SOAP_API_Calls/login_call
Please note:
If the subscriptions were already invoiced or payed, it will not let you delete the amendments, you should see an error or something. You will need to cancel the invoice and payment then try the this API call.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √