Для получения свойств в UMI к примеру Время доставки, Дата доставки и т.д.: Дамп объекта: 
		
		
			
			
			
			
				
					
				| 
					
				 | 
						http://site/uobject://10803  | 
					
				
			 
		 
 Получить свойство объекта: 
		
		
			
			
			
			
				
					
				| 
					
				 | 
						http://site/uobject://10803.delivery_price  | 
					
				
			 
		 
   Для этого создадим в custom.php Вариант 1) UMI API 
		
		
			
			
			
			
				
					
				| 
					
				 | 
						    public function getProp($id, $value) { // получение нужного свойства           $objects = umiObjectsCollection::getInstance();         $res = $objects->getObject($id)->getValue($value);           return $res;     }  | 
					
				
			 
		 
 Вызвать можно как: 
		
		
			
			
			
			
				
					
				| 
					
				 | 
						http://site.ru/udata://custom/getProp/10803/delivery_address  | 
					
				
			 
		 
   
		
		
			
			
			
			
				
					
				| 
					
				 | 
						     public function posTest () {         $objectID = 10803; // ID объекта         $deliveryID = $this->getProp($objectID, 'delivery_address');         $res = $this->getProp($deliveryID, 'house');           return ($res);     }  | 
					
				
			 
		 
   Вариант 2) JSON 
		
		
			
			
			
			
				
					
				| 
					
				 | 
						     public function posTest () {           $objects = umiObjectsCollection::getInstance();         $orderObj = order::get(10803);                  $deliveryID = $orderObj->getValue('delivery_address'); // получаем ID адреса доставки         $discountID = $orderObj->getValue('order_discount_id'); // получаем ID скидки                  $getID = file_get_contents("https://site.ru/uobject://$discountID.discount_modificator_id.json");         $objectID = json_decode($getID)->property->value->item->id;           $get = file_get_contents("https://site.ru/uobject://$objectID.proc.json");         $res = json_decode($get)->property->value->value;     }  |