Наконец я создал кейс, используя следующий код:
<code><?php
/**
* Use init.php if you didn't install the package via Composer
*/
require_once 'vendor/autoload.php';
use AlexaCRM\CRMToolkit\Client as OrganizationService;
use AlexaCRM\CRMToolkit\Settings;
use AlexaCRM\CRMToolkit\Entity\EntityReference;
$options = [
'serverUrl' => '**************************',
'username' => '**********************',
'password' => '*****************',
'authMode' => 'OnlineFederation',
];
$serviceSettings = new Settings( $options );
$service = new OrganizationService( $serviceSettings );
$contact = $service->entity( 'contact' );
$contact->firstname = 'John';
$contact->lastname = 'Doe';
$contact->emailaddress1 = 'john.doe@example.com';
$guid = $contact->create();
$incident = $service->entity('incident');
//echo '<pre>';print_r($incident);echo '
';$ident-> title = 'Тест, созданный с помощью прокси';$ident-> description = 'Это тестовый инцидент';$ident-> customerid = new EntityReference ('contact', $ guid);// $ инцидент-> ID = $ guid; // контактный адрес?>