Hello, I am following the Getting Started guide: https://www.zuora.com/developer/quick-start/ I have translated the following curl request to Postman: curl -X POST \
-H "apiAccessKeyId: $your-zuora-username" \ -H "apiSecretAccessKey: $your-zuora-password" \ -H "Content-Type: application/json" \ -d '{ "name":"ABC Unlimited", "currency":"USD", "billToContact":{ "firstName":"Leo", "lastName":"Liu" }, "soldToContact":{ "firstName":"Leo", "lastName":"Liu", "state":"CA", "country":"USA" }, "creditCard":{ "cardType":"Visa", "cardNumber":"4111111111111111", "expirationMonth":10, "expirationYear":2020, "securityCode":"111" }, "subscription":{ "contractEffectiveDate": "2016-10-01", "termType":"TERMED", "autoRenew":false, "initialTerm":12, "renewalTerm":12, "subscribeToRatePlans":[ { "productRatePlanId": "$your-product-rateplan-id" } ] } }' "https://rest.apisandbox.zuora.com/v1/accounts" I enter the ProductRatePlanId and I always receive the following response: {
"success": false,
"processId": "00EC6587F78B9974",
"reasons": [
{
"code": 51000010,
"message": "Subscription api cannot be used when order is enabled."
}
]
} I have tried using the Product Id as well. The previous request to get this information is also from the guide: curl -X GET \
-H "apiAccessKeyId: $your-zuora-username" \ -H "apiSecretAccessKey: $your-zuora-password" \ "https://rest.apisandbox.zuora.com/v1/catalog/products" Google also yields no results for the error message, and using cURL yields the same response. Any ideas as to what is wrong or what I may be missing? I have set up a fresh Test Drive Tenant account / environment.
... View more