Hi, I used the following REST APIs to update "Notes" field in a existing Subscription. But I am receiving following error messages. can you help us on this ? REST-API https://rest.apisandbox.zuora.com/v1/subscriptions/{subscription-key} Request object : {
"notes": "update subscription notes here"
} This returns “Subscription api cannot be used when order is enabled.” Later I referred the link - https://knowledgecenter.zuora.com/Billing/Subscriptions/Orders/AB_Orders_API_Migration_Guidance Based on the guidance I used the following API which is also not successful. REST API https://rest.apisandbox.zuora.com/v1/orders {
"existingAccountNumber": "XXXXXXX",
"orderDate": "2022-05-22",
"subscriptions": [
{
"orderActions": [
{
"createSubscription": {
"subscriptionNumber": "A-S00000330",
"notes": "update outbound model here",
"terms": {
"initialTerm": {
"termType": "EVERGREEN"
}
}
},
"type": "CreateSubscription"
}
]
}
]
} This returns “The subscription number A-S00000330 is already in use. Please enter another subscription number.”
... View more