我正在使用 Infusionsoft 的 PHP API 添加联系人 - https://developer.infusionsoft.com/
此外,我正在使用 Novak 的 Infusionsoft 框架:https ://github.com/novaksolutions/infusionsoft-php-sdk
$contact = new Infusionsoft_Contact();
$contact->FirstName = $first_name;
$contact->LastName = $last_name;
$contact_name = $first_name . " " . $last_name;
$contact->Email = $email;
$contact->save();
添加联系人后,我想创建一个任务并将其分配给新创建的联系人和员工。
$task_description = "Call this person asap";
$contact_id = $contact->id;
$employee_id = 2496;
我在文档中找不到执行此操作的方法。我需要做什么?