-
Notifications
You must be signed in to change notification settings - Fork 30
Description
First of all thanks for the package!
Here's the code
$client = new Direct($this->gotoWebinar['consumerKey']); $client->auth($this->gotoWebinar['username'], $this->gotoWebinar['password']); $webinarKey = 99999999; $registrantData = ['email' => 'joe@joesmith.com', 'firstName' => 'Joe', 'lastName' => 'Smith']; $goToWebinar = new GoToWebinar($client); $result = $goToWebinar->register($webinarKey, $registrantData);
I followed the example in the readme.. am I missing a step ?
Here's the error
in Consumer.php line 91 at Application->Laravel\Lumen\Concerns\{closure}('8', 'Undefined index: firstName', '/home/ctl/public_html/vendor/teodortalov/citrix/src/Citrix/Entity/Consumer.php', '91', array('data' => array('registrantKey' => '9999999999999999', 'joinUrl' => 'https://global.gotowebinar.com/join/174453500580248099898/82761999506', 'status' => 'APPROVED', 'description' => 'The user is already registered.'))) in Consumer.php line 91
Any help appreciated!