Fetch data form APIM returns a Content modified message instead of the data
I'm using aem adaptive form 6.5
After I upgrade aem service package and form addon package to newest version 6.5.21
When I try to fetch the data from the api on author mode the api return message content modify instead of the data
Response error form api
<html>
<head>
<title>Content modified /content/forms/af/../jcr:content/guideContainer</title>
</head>
<body>
<h1>Content modified /content/forms/af/...../jcr:content/guideContainer</h1>
<table>
<tbody>
<tr>
<td>Status</td>
<td><div id="Status">200</div></td>
</tr>
What can cause this issue ?
Rule fetch data from api
var operationInfo = {
"formDataModelId": ""
"operationTitle": "",
"operationName": ""
};
var inputs = {
};
var outputs = {
};
var success = function (wsdlOutput, textStatus, jqXHR) {
var responseJSON = JSON.parse(wsdlOutput);
};
var failure = function(textStatus){
};
guidelib.dataIntegrationUtils.executeOperation(operationInfo, inputs, outputs, null, failure, this);