Поменять свойство заказа (битрикс api)

$order = \Bitrix\Sale\Order::load($id);
$propertyId = '58'; //id св-ва которое меняем
$propertyCollection = $order->getPropertyCollection();
$property = $propertyCollection->getItemByOrderPropertyId($propertyId);
$property->setValue('11111111111');
$result = $order->save();


Возврат к списку


-----
-----