I programmatically created a new label and obtained the corresponding label ID as a response mentioned below.
contactGroups/47b2ea780fbdabe
Using above Id, i am trying to add the contact details inside the specified label. Please find the code below for reference,
$peopleService = new Google_Service_PeopleService($client);
$person = new Google_Service_PeopleService_Person();
$names = new Google_Service_PeopleService_Name();
$names->setGivenName('Shankari');
$names->setFamilyName('s');
$person->setNames([$names]);
$email = new Google_Service_PeopleService_EmailAddress();
$email->setValue('[email protected]');
$person->setEmailAddresses([$email]);
$membership = new Google_Service_PeopleService_ContactGroupMembership();
$membership->setContactGroupResourceName($folderId);
$person->setMemberships([$membership]);
$createdContact = $peopleService->people->createContact($person);
The above code does not show any error, but still the contact is not been reflected in contacts page.
Please let me know the fixes on the above scenario.
I have tried the below method to create a contact inside folder.
Folder Id includes "contactGroups/55f5e6YYYZZZ54b3"