Can someone help me what is this error for?
{ "success": false, "processId": "7F4B47F18818985A", "reasons": [ { "code": 58560060, "message": "{\"gatewayResponse\":{\"code\":\"R4\",\"message\":\"Ceiling Limit\"}}" } ] }
... View more
I posted two orders for same account to create two subscription and it threw following error:
Response Body: { "success" : false, "processId" : "7469F90B2138D8B5", "reasons" : [ { "code" : 58560050, "message" : "Object of class [com.zuora.zbilling.account.model.BillingAccount] with identifier [2c92c0fa6c22797e016c24cef4b64253]: optimistic locking failed; nested exception is org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect): } ] }
Is this bug?
... View more
This is working for me! Thanks for your help David! Will https://assets.zuora.com/zuora-documentation/swagger.yaml be updated to reflect the same? More suggestions for swagger: Can we add "reasons" and "processId" to " CommonResponseType", this will help us log issues with our response objects.
... View more
Hi, I used following command to generate java-library from Zuora OpenAPI spec: curl -X POST -H "Content-Type: application/json" -d '{"swaggerUrl":"https://assets.zuora.com/zuora-documentation/swagger.yaml"}' https://generator.swagger.io/api/gen/clients/java When I am trying to run mvn build for generated library, I am getting following compilation error: [ ERROR ] /Users/rkotecha/temp/java-client/src/main/java/io/swagger/client/model/SubscriptionProductFeatureObjectCustomFields.java:[19,31] cannot find symbol [ ERROR ] symbol: class ERRORUNKNOWN [ ERROR ] location: package io.swagger.client.model [ ERROR ] /Users/rkotecha/temp/java-client/src/main/java/io/swagger/client/model/SubscriptionProductFeatureObjectCustomFields.java:[28,83] cannot find symbol [ ERROR ] symbol: class ERRORUNKNOWN Can someone help me with this? Am I missing anything here?
... View more
I am trying to update terms and condition and adding one product at the same time. But i am getting the error as below: { "success": false, "processId": "B780AE52EF99BA40", "reasons": [ { "code": 58560000, "message": null } ] }
... View more
I am getting this exception when I am trying to following 3 rate plans: 1. Recurring RP1 to start upon serviceActivation for fixed period of 3months 2. Discount RP2 100% on RP1 to start upon serviceActivation for fixed period of 3months 3. Recurring RP1 to start on specific date (after 3months) for every 1 year till Subscription End Initial term is for 3month with autonewel enabled for every 1year
... View more
Sure. Thanks. Can you help me find why I am getting this: { "success": false, "processId": "C91C98162652254D", "reasons": [ { "code": 58560021, "message": "Invalid parameter(s): 'previewOptions'." } ] } This is how my preview option looks like: "previewOptions": { "previewThruType": "SpecificDate", "previewTypes": [ "OrderMetrics", "BillingDocs", "ChargeMetrics" ], "specificPreviewThruDate": "2019-3-30" },
... View more
Yeah, looks like only way to achieve this is by creating different subscription for each rate plan, unless someone replies and suggest some other way. Thanks for you response Per!
... View more
Thanks Yong! You are right, I was not populating the renewal terms correct. Can you also give information about 58560000? It will be good to have the complete list somewhere which we can refer. Also, we see "processId": "8495C7ADA1E0A34D" is returned for error scenarios. What is the purpose of this? How we can use this processId to debug what is wrong when message returns null. e.g: { "success": false, "processId": "8495C7ADA1E0A34D", "reasons": [ { "code": 58560000, "message": null } ] }
... View more
Thank you for response Per! We have bunch of rate plans with different terms. User can pick any combination of these rate plans, some of them could be autorenewed and some of them could not. Will it be possible to use single subscription under Zuora to configure this? We tried couple of scenarios, and we thought we could achive it by using chargeOverrides option by providing endDateCondition for the rate plan and its charge. But wanted to check in forum if that is the right way to do it. Because of limited knowledge, we are not able to understand any drawbacks of this way. FYI: We are in phase where we are deciding whether we should have single subscription for all rate plan user chooses or group them by trial/paid or just create 1 subscription per rate plan.
... View more
I have two rate plans, RP1 and RP2. RP1 has billingPeriod Annual, and RP2 has billingPeriod Three_Years. I want these rate plans to be auto renewed with renewalSetting RENEW_WITH_SPECIFIC_TERM. Renewal term for RP1 is 1year and renewal term for PR2 is 3years. Is it possible to provision both rate plan within single subscription? Or i need to provision it under different subscription as renewalTerm is at subscription level?
... View more