diff --git a/guides/m1x/api/soap/catalog/catalogCategory/catalog_category.info.html b/guides/m1x/api/soap/catalog/catalogCategory/catalog_category.info.html index 0c04ad954c..bfe4533610 100644 --- a/guides/m1x/api/soap/catalog/catalogCategory/catalog_category.info.html +++ b/guides/m1x/api/soap/catalog/catalogCategory/catalog_category.info.html @@ -297,6 +297,21 @@
+
Filter by StoreView V2 (WS-I Compliance Mode)
+ +Attention: In WS-I Compliance Mode the parameter that is used to retrieve data for a specific storeView is named `store` instead of `storeView`. + +
+
+
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
+
+$sessionId = $proxy->login((object)array('username' => 'apiUser', 'apiKey' => 'apiKey'));
+
+$result = $proxy->catalogCategoryInfo((object)array('sessionId' => $sessionId->result, 'categoryId' => '5', 'store' => '1' ));
+var_dump($result->result);
+
+
+
Response Example SOAP V1