$result = $ZohoProject->createTask([
'name'=>$FeeBreakdownRow->Title,
'tasklist_id'=>$Parent->ZohoID,
'duration'=>$FeeBreakdownRow->Hours,
'description'=>$FeeBreakdownRow->Description,
'start_date'=>date('m-d-Y'),
'custom_fields[]' => json_include($targetDate),
'duration_type'=>'hrs',
'work_type'=>'work_hours',
'task_duration_as_work'=>'true',
'person_responsible'=>$ZohoProject->findUserIDFromEmail($FeeBreakdownRow->OwnerEmail),
]);