I am using redmine rest api with c# and I have a problem with custom fields. I have this method:
NameValueCollection parameters = new NameValueCollection { { RedmineKeys.INCLUDE, RedmineKeys.CUSTOM_FIELDS} };
var projectInfo = manager.GetObject<Redmine.Net.Api.Types.Project>("1", parameters);
From that I can get project info but the custom fields are always null. I have one custom field (email) that appears in all new issues and I can get it from issue. I would like to get all custom fields that are in the project.
What am I doing wrong?