Attempting to send a single amendment via action POST amend and getting the error "Multi AmendRequest is not supported" The payload: (ids redacted) {
"requests":
{
"Amendments":
[
{
"DestinationAccountId":"......acct_id_a",
"DestinationInvoiceOwnerId":".....acct_id_b",
"SubscriptionId":".....sub_id",
"ContractEffectiveDate":"2020-02-05",
"CustomerAcceptanceDate":"2020-02-05",
"ServiceActivationDate":"2020-02-05",
"Status":"Completed",
"Type":"OwnerTransfer"
}
]
}
} The response is: {
"faultcode": "fns:INVALID_VALUE",
"faultstring":"Multi AmendRequest is not supported.",
"detail":
{
"UnexpectedErrorFault":
{
"FaultCode":"INVALID_VALUE",
"FaultMessage":"Multi AmendRequest is not supported."
}
}
} It seems that error should only occur if I put multiple subscription amendments in one call, but it's returning for this single call. Any ideas? Work-arounds?
... View more