Hi,
Are you okay to update 'Notes' using Subscription Id? If yes, you can use the below API.
REST API URL: https://rest.apisandbox.zuora.com/v1/action/update
Method: POST
Request Body
{
"objects": [
{
"Id": "8ac6819b71a69a2b0171a775375a00df",
"Notes": "Notes Updated"
}
],
"type": "Subscription"
}
Response from Zuora
[
{
"Success": true,
"Id": "8ac6819b71a69a2b0171a775375a00df"
}
]
Ref: https://www.zuora.com/developer/api-reference/#operation/Action_POSTupdate Thanks,
Prem
... View more