We use the following request to query a list of subscriptions via ZOQL: curl -X POST \ -H "apiAccessKeyId: api+testdrive@company.com" \ -H "apiSecretAccessKey: XXXXXX" \ -H "Content-Type: application/json" \ -H "Accept: application/json" \ -d '{ "queryString": "select AccountId, AutoRenew, CancelledDate, CreatedDate, CurrentTerm, CurrentTermPeriodType, Id, Name, Notes, OriginalId, Status, TermEndDate, TermStartDate from Subscription" }' "https://rest.apisandbox.zuora.com/v1/action/query" But this does not returns product data related to the subscription. How can we get product IDs associated with the subscriptions?
... View more