見て: Mage_Catalog_Model_Api2_Product_Rest::_retrieveCollection()
:
$collection = Mage::getResourceModel('catalog/product_collection');
$store = $this->_getStore();
//[...]
$collection->addStoreFilter($store->getId())
そのため、コレクションではストア ビュー フィルターが考慮されます。_getStore()
メソッドをさらに掘り下げてみましょう。
Mage_Api2_Model_Resource::_getStore()
:
protected function _getStore()
{
$store = $this->getRequest()->getParam('store');
try {
if ($this->getUserType() != Mage_Api2_Model_Auth_User_Admin::USER_TYPE) {
// customer or guest role
if (!$store) {
$store = Mage::app()->getDefaultStoreView();
} else {
$store = Mage::app()->getStore($store);
}
} else {
// admin role
if (is_null($store)) {
$store = Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID;
}
$store = Mage::app()->getStore($store);
}
} catch (Mage_Core_Model_Store_Exception $e) {
// store does not exist
$this->_critical('Requested store is invalid', Mage_Api2_Model_Server::HTTP_BAD_REQUEST);
}
return $store;
}
これに基づいて、次のように指定できると思います。your_request_url?param...&store=STORE_ID