Hello, We are trying to make an SOAP API call with below reqest, and Zuora is returning an 500 error with out any details. Is there a way we can check, whats wrong with the request or why the call failed ? *Session token has been replaced in the below request. <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://object.api.zuora.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://api.zuora.com/"><soapenv:Header> <ns0:SessionHeader><ns0:session> ****************Session**Token********</ns0:session> </ns0:SessionHeader> </soapenv:Header> <soapenv:Body><ns0:create xmlns:ns0="http://api.zuora.com/"><ns0:zObjects xsi:type="ns1:Export" xmlns:ns1="http://object.api.zuora.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ns1:Format xmlns:ns1="http://object.api.zuora.com/">html</ns1:Format><ns1:Name xmlns:ns1="http://object.api.zuora.com/">BILLRUN</ns1:Name><ns1:Query xmlns:ns1="http://object.api.zuora.com/">select Invoice.InvoiceNumber,Account.AccountNumber,account.name,InvoiceItem.AccountingCode,Invoiceitem.UOM,InvoiceItem.ChargeAmount,Invoiceitem.Unitprice,InvoiceItem.Id,InvoiceItem.ChargeName,InvoiceItem.ChargeDate,Invoiceitem.Quantity,Account.SAP_Customer_Number__C,Account.BusinessUnit__c,Account.Currency,InvoiceItem.TaxAmount,invoiceitem.taxcode,SoldToContact.Country,SoldToContact.Address1,SoldToContact.Address2,SoldToContact.PostalCode,soldtocontact.city,soldtocontact.state,Invoice.InvoiceDate,Invoice.Status,Invoice.DueDate,Invoice.Amount,invoice.id,invoice.sourceid,invoice.source,BillToContact.Address1,BillToContact.Address2,BillToContact.Country,BillToContact.PostalCode,BillToContact.State, product.SKU from invoiceitem where invoice.sourceid ='BR-00000645'</ns1:Query><ns1:Zip xmlns:ns1="http://object.api.zuora.com/">false</ns1:Zip></ns0:zObjects></ns0:create></soapenv:Body> </soapenv:Envelope>
... View more