$storeId - id склада
Loader::includeModule('catalog');
$resStores = \CCatalogStore::GetList(
[],
['ID' => $storeId],
false,
false,
['ID', 'TITLE']
);
$arResult['STORES'] = [];
while ($arStore = $resStores->Fetch()) {
$arResult['STORES'][] = $arStore ;
}