Questions tagged [zuora]

Zuora is a subscription management platform. Their cloud-based software empowers businesses to launch subscription models and manage the entire lifecycle of their subscribers.

Zuora is a subscription management platform. Their cloud-based software empowers businesses to launch subscription models and manage the entire lifecycle of their subscribers. Questions? Visit the Zuora Community

26 questions
5
votes
1 answer

How to execute Zuora ZOQL query directly using REST API

zuora-soap API provides ZOQL through query() and returns query results in that response itself. I am looking for the same feature in zuora REST API. But it supports executing query through "export" or "batch-query" api. Those API allows me to fetch…
Achaius
  • 5,904
  • 21
  • 65
  • 122
5
votes
1 answer

Swagger client codegen does not include optional methods

I am using swagger codegen (on this Zoura swagger) to create a Java/rest template client. I am using the swagger Gradle plugin: id "org.hidetake.swagger.generator" version "2.11.0" Here is the config for it: { "library": "resttemplate", …
codesalsa
  • 882
  • 5
  • 18
5
votes
1 answer

Invalid 'X-Frame-Options' Header. ' ' is not a recognized directive

I'm using the Zuora hosted payment iframe. In short, you load the Zuora library to give you access to a Z object containing the Zuora API methods. Using Z.render() to render the payment form into an iframe. When the iframe loads this error is shown…
Brett DeWoody
  • 59,771
  • 29
  • 135
  • 184
5
votes
1 answer

Netsuite Salesforce Integration ESB vs Prebuilt Connectors

Is there a benefit for using prebuilt connectors to and from SaaS billing platforms like Aria/Zuora when they live between Salesforce and Netsuite used as pure CRM and ERP/Acounting/Finance respectively. That is, versus using an ESB/Integration…
Bill Rosmus
  • 2,941
  • 7
  • 40
  • 61
2
votes
2 answers

ZOQL Execution via Zuora REST API

I am trying to execute some ZOQL via Zuora REST API. I've referred this doc and I am using REST endpoint v1/action/query to execute ZOQL. First I tried with very simple request and got the result back { "queryString": "select AccountId, FirstName,…
sag
  • 5,333
  • 8
  • 54
  • 91
2
votes
1 answer

How to preview upcoming invoices using the Zuora SOAP API?

From the Zuora user interface I can preview a subscription using a convenient "Preview" button. I'd like to perform the same action using the Zuora SOAP API so that I can preview what the upcoming invoices and write some tests. So far, my theory is…
logan
  • 3,416
  • 1
  • 33
  • 45
1
vote
1 answer

Preserving Vuex State on page redirect

I'm implementing a cart and currently using Zuora's Direct Post. Basically it's a form submit to Zuora and upon success Zuora will redirect back to my site. They allow for 5 field_passthroughs which are just query string parameters in the url. I…
user6728767
  • 1,123
  • 3
  • 15
  • 31
1
vote
2 answers

Zuora - How to get invoice PDF and display to user

Short question: Using the get_invoices endpoint, when I try to access the URL from the InvoiceFiles.pdfFileUrl response, it pops up a api.zuora login form. I need my customers to be able to access these PDFs. If I enter my Zuora creds, it will…
Joshua Dance
  • 8,847
  • 4
  • 67
  • 72
1
vote
2 answers

Zuora Authentication Issue #code 90000011

When I call 'https://apisandbox-api.zuora.com/rest/v1/accounts' with required apiAccessKeyId, apiSecretAccessKey and parameters, I recieve the response { "success": false, "reasons": [ { "code": 90000011, "message": "this…
0
votes
0 answers

How can I write a zuora Query whcih returns me the date in a specific format?

I am trying to write the zuora SQL to return me the EffectiveStartDate of product in 'DD/MM/YYYY' format. SELECT DATE_FORMAT(EffectiveStartDate, 'DD/MM/YYYY') as formatted_date FROM product I am getting the output like this. formatted_date …
Ateeq
  • 5
  • 4
0
votes
1 answer

ZOQL date filtering via Zuora REST API

I'm trying to establish some pipelines that would pull data from Zuora, however, I want them to be incremental, i.e. so that only the data that has been updated after the last load to be pulled. In order to do that, I access…
H8oddo
  • 123
  • 9
0
votes
1 answer

AWS S3 file download via Java. Failing on Authentication call

I'm trying to download a JSON file from an AWS S3 bucket through Java. The file is created by a 3rd party billing application called Zuora. The first step is to use OAuth credentials to generate the file. I then get a response with the file URL. I…
randomG765
  • 63
  • 1
  • 13
0
votes
2 answers

How can I write ZOQL (Zuora SQL) function which returns yesterday date?

How can I write ZOQL (Zuora SQL) function which returns yesterday date? I can not write this function. Zuora contains date_add function but I don't know the right syntax. I tried to write this function with current term expression. Maybe you can…
0
votes
1 answer

Zuora. Getting payment associated with payment refund

How i can get PaymentId associated with a refund using API? for example, i can get this using builtin callback Payment Refund Processed But i can't found a way for getting PaymentId using a similar custom callback or REST\SOAP API. Do you have any…
Roman
  • 35
  • 1
  • 5
0
votes
1 answer

Zuora payment-methods/credit-cards api returning 90000011 from java Client but returning success response from postman

I am in the middle of integration zuora apis with my application. These are the below 3 three apis I am using through following steps - Step 1 Requesting for auth token Service api (Test)- https://rest.apisandbox.zuora.com/oauth/token …
1
2