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
When a new activity is created using PipedriveClient.Create method, the activity is always created as Done, even if you set in paramaters Undone.
To Reproduce
Steps to reproduce the behavior:
NewActivity activityParams = new NewActivity("Call the client", "Call")
{
UserId = 12345,
DueDate = DateTime.UtcNow.AddDays(5),
Note = "This is the note for the activity",
Done = ActivityDone.Undone,
PersonId = 456
};
var createdActivity = await client.Activity.Create(activityParams);
Expected behavior
New activity should be created with Undone status.
The text was updated successfully, but these errors were encountered:
I tried again creating an activity and it's created with Done Status. I tried to update it but the status always remain Done, even if I force it Undone.
I am using the nuget package in my code. I don't know what could be the issue?
Describe the bug
When a new activity is created using PipedriveClient.Create method, the activity is always created as Done, even if you set in paramaters Undone.
To Reproduce
Steps to reproduce the behavior:
NewActivity activityParams = new NewActivity("Call the client", "Call")
{
UserId = 12345,
DueDate = DateTime.UtcNow.AddDays(5),
Note = "This is the note for the activity",
Done = ActivityDone.Undone,
PersonId = 456
};
Expected behavior
New activity should be created with Undone status.
The text was updated successfully, but these errors were encountered: