We have been creating shared contacts (external contacts) in Google Workspace using the google contact apis for years. The contact apis are going to be discontinued on June 15, 2021. What libraries can we now use in dotnet?
We tried the People api with code similar to this:
PeopleResource.CreateContactRequest request = new PeopleResource.CreateContactRequest(_peopleService,contact);
Person createdContact = request.Execute();
However, it's creating a contact in the user contact list, not a domain contact. By domain contact, I mean : Shared Contact, External contact, Directory contact, a contact stored in the global company directory.
I'm not finding anything existing in dotnet C#. What should I use?