public string AddType(string label = "", string email = "") {
     try {
         ContactType type = new ContactType {
             label = label,
             email = email
         };
         type.Add();
         return JsonConvert.SerializeObject(type);
     } catch (Exception e) {
         return e.Message;
     }
 }