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
Describe the bug
Unable to UPDATE a person's email address using EDIT
To Reproduce
var currentPerson = client.Person.Get(personId).Result;
currentPerson.Email = new List { new Email{ Primary = true, Label = "work", Value = @"[email protected]" } };
var personUpdate = currentPerson.ToUpdate();
var res2 = client.Person.Edit(personId, personUpdate).Result;
It seems to be PUTing the right data but it just wont update
Expected behavior
Email address to appear in Pipedrive
The text was updated successfully, but these errors were encountered:
Describe the bug
Unable to UPDATE a person's email address using EDIT
To Reproduce
var currentPerson = client.Person.Get(personId).Result;
currentPerson.Email = new List { new Email{ Primary = true, Label = "work", Value = @"[email protected]" } };
var personUpdate = currentPerson.ToUpdate();
var res2 = client.Person.Edit(personId, personUpdate).Result;
It seems to be PUTing the right data but it just wont update
Expected behavior
Email address to appear in Pipedrive
The text was updated successfully, but these errors were encountered: