Questions tagged [redmine-api]

106 questions
7
votes
2 answers

jsonp getting 404 when calling Redmine API

I am trying to consume Redmine API from an angularjs project. I ended up using jsonp in order to solve CORS problem. I receive 404 when calling this: var url = 'http://muser:mpasswd@myredmine/issues.json?callback=displayIssues'; $http({ …
eeadev
  • 3,662
  • 8
  • 47
  • 100
6
votes
1 answer

Is it possible to define the issue number in GitHub?

I would like to move from Redmine to GitHub by importing my repositories and issues. In my commits I referenced issues by using issues numbers like #343. Since issues number are cross project inside Redmine, I would like to change issue id in GitHub…
Charles
  • 11,367
  • 10
  • 77
  • 114
4
votes
2 answers

How to Fix '422 Unprocessable Entity' when sending a POST request to Redmine API?

I am trying to create a wiki page using redmine rest api. The Authentication was succeeded, however the wiki page is not being created because of a 422 error. The Redmine documentation says: "When trying to create or update an object with invalid or…
4
votes
1 answer

How to log in into Redmine using REST API

I have the requirement to log in into Redmine using the REST API. Is it possible to login in Redmine using REST API? How can I handle it?
Randhir Singh
  • 245
  • 1
  • 7
  • 19
3
votes
1 answer

Redmine: Find all issues ever assigned to me

I need to list all redmine issues that I ever worked on, so all issues that have ever been assigned to me. The filter does not give me a suitable option. I reassigned most of these issues, so I could inspect the activity stream manually, which is…
goeck
  • 53
  • 5
3
votes
2 answers

Setting new issue's author through Redmine .NET API

I am trying to manage Redmine from ASP.NET MVC application with using Redmine .NET API. The MVC application needs to allow users to create and edit Issue from its UI. (The MVC application has same users as Redmine does.) The following code added a…
jhmt
  • 1,401
  • 1
  • 11
  • 15
2
votes
1 answer

python-redmine filter issues by version due date

I need to filter issues where issue fixed_version due date is between two given date. For example versions which they due_date is in current month. I tried everything I could think of, but I couldn't figure it out. I used below code now but It's too…
Sajad Jalilian
  • 136
  • 1
  • 7
2
votes
1 answer

How to run a script after a pull-request on GitHub?

Good morning, everyone, I want to create a script which automatically update an issue on RedMine when someone make a pull-request on our GitHub based on the pull-request comment. I wrote a script in Python using selenium and redmine REST API that…
Max Teiger
  • 145
  • 1
  • 14
2
votes
1 answer

Redmine - Extending context menu

I want to extend the functionality of the context menu of a Redmine plugin. I found the context menu view I want to modify. However I feel lost. I am new to Redmine api. I want to be able to select some items and make a function to only show these…
2
votes
2 answers

Redmine C# programm with Redmine API

I'm writing a program in C# with the Redmine Api and I only can login through var manager = new RedmineManager("http://srvredmine/login", username, password); and if I use simple task like var user =…
Zasam
  • 63
  • 2
  • 17
2
votes
1 answer

Redmine API to fetch all issue in python

I am trying to fetch all the issue from redmine list_1 = [] issuess = conn_red.issue.all() for i in issuess: list_1.append(i) print len(list_1) The print statement result is 575 But In Redmine, I have 2735 issue. I wonder, why it is…
2
votes
1 answer

python redmine how to get all the issues in a project as xml or json?

I have more than 1500 issues in my project I need to check each issues using python Redmine API but it limits default by 25 and I can extend up to 100 but how can I check for all 1500 issues.
Anishkumar
  • 31
  • 1
  • 6
2
votes
2 answers

Get Redmine user details by user email id

Is there any redmine REST API available for company admin to get the details of user by giving users email id. details like redmine KEY etc
2
votes
1 answer

Not getting all records or filtered records

I am getting data from redmine timeentry. The issue is i am getting only last 25 records. My filters are not working Any idea, why filters are not working or what type of mistake I am doing? I have installed package of redmine from Nuget Here is the…
Amna
  • 603
  • 7
  • 30
2
votes
1 answer

redmine error with RMagic

Hello now i am install redmine but when i try migrate my database there is a error : [DEPRECATION] requiring "RMagick" is deprecated. Use "rmagick" instead there is stacktrce : root@server:/opt/redmine/redmine-3.0# bundle exec rake…
Łukasz Woźniczka
  • 1,625
  • 3
  • 28
  • 51
1
2 3 4 5 6 7 8