Skip to content

Commit c88ba86

Browse files
committed
AC-10541: Rest API Fix
1 parent 4ecb236 commit c88ba86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Webapi/Controller/Rest/InputParamsResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ public function getInputData()
138138
$serviceMethodName
139139
);
140140
$inputData = array_merge($inputData, $this->request->getParams());
141+
$inputData = $this->filterInputData($inputData);
141142
} else {
142143
$inputData = $this->request->getRequestData();
143144
}
144145

145-
$inputData = $this->filterInputData($inputData);
146146
$this->validateParameters($serviceClassName, $serviceMethodName, array_keys($route->getParameters()));
147147

148148
return $this->paramsOverrider->override($inputData, $route->getParameters());

0 commit comments

Comments
 (0)