我正在使用https://github.com/AlexaCRM/php-crm-toolkit将数据从表单发送到 CRM 中的实体我想将产品 ID 从实体“new_produituic”添加到“联系人”实体
<?php
require 'autoload.php' ;
use AlexaCRM\CRMToolkit\Entity\EntityReference;
use AlexaCRM\CRMToolkit\Client as OrganizationService;
use AlexaCRM\CRMToolkit\Settings;
$options = [
'serverUrl' => 'https://xxxx/',
'username' => 'xxx',
'password' => 'xxx',
'authMode' => 'xxx',
'ignoreSslErrors' => true
];
$serviceSettings = new Settings( $options );
$service = new OrganizationService( $serviceSettings );
$guid="00f1b74b-645c-e911-80c1-005056aa3849" ;
$contact = $service->entity('contact');
$contact->firstname='testproduits';
$contact->new_produit_demande= new EntityReference('new_produituic',$guid);
$contactId = $contact->create();
我希望添加一个字段名是“testproduits”并且字段“new_produit_demande”是 guid 的联系人