0
$person = new Google_Service_PeopleService_Person($create_data[0]);
$exe = $service->people->createContact($person);*/

This has been used to create a single contact.Which class is used for batch to create a contact ?

Oris Sin
  • 1,023
  • 1
  • 13
  • 33

1 Answers1

0

The documentation explains how to perform batching requests for the People API

There is no "implemented batch class" as such, instead you need to perform an HTTP request to the batch endpoint URL.

See also the following posts:

ziganotschka
  • 25,866
  • 2
  • 16
  • 33