I am using the C# atlassian sdk (version 12.4). I am able to create a jira issue with the below code, but the assignee field does not seem to get populated. I am using the the assignee account id
var jira = Jira.CreateRestClient(_settings.JiraServer, _settings.AtlassianUser, _settings.AtlassianToken);
var myself = await jira.Users.GetMyselfAsync();
var newIssue = jira.CreateIssue(_settings.JiraProject);
newIssue.Type = _settings.JiraIssueType;
newIssue.Summary = "This is a summary";
newIssue.Assignee = myself.AccountId;
await newIssue.SaveChangesAsync();
The issue gets created but it is unassigned. When I create the issue via postman, using the account id (returned from myself) - It works properly. I think it is a bug in the sdk
Thanks