function addProperty($orderId, $propertyTag, $propertyValue)
{
$order = \Bitrix\Sale\Order::load($orderId);
foreach($order->getPropertyCollection() as $property) {
if($property->getField('CODE') === $propertyTag) {
$property->setValue($propertyValue);
$order->save();
return true;
}
}
return false;
}
Шансов сделать "на подобии Вконтакте" - ни малейших.