I have successfully integrated with Google Calendar using PHP with a Service Account.
What I can do:
Late to the party but since there are no answers...
I've just been having this exact same problem. Few things:
sendNotifications
is deprecated, you should be using sendUpdates instead.$event = $service->events->patch(
$calendarID,
$eventID,
$event,
['sendUpdates' => 'all']
);