You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a custom field in pipedrive set up as following :
How to create this kind of multiple options field using the client, there is no CustomField class which looks like an array of options ?
varcustomFields=newDictionary<string,ICustomField>();varoptins=newList<string>(){"Newsletter","Communication"};customFields.Add("Optins",<howto put the optins array here ?>);await_client.Person.Create(newNewPerson("Test"){Email=newList<Email>(){newEmail(){Label="Professional",Value="test@github.com"}},CustomFields=customFields});
The text was updated successfully, but these errors were encountered:
I have a custom field in pipedrive set up as following :
How to create this kind of multiple options field using the client, there is no CustomField class which looks like an array of options ?
The text was updated successfully, but these errors were encountered: