I can create a new Google contact on submission of a Form. I need to add a label to these contacts but I couldn't find any method to do that. Is it possible to add a label? Here is a snippet of my code for finding/creating a contact:
var contact = ContactsApp.getContact(email);
if(!contact){
contact = ContactsApp.createContact(firstName, lastName, email);
}