Questions tagged [redmine-api]

106 questions
0
votes
0 answers

Redmine Shared API

I'm trying to use the redmine shared api plugin in order to use the redmine rest API but in a way that exposes sprints and not only the issues that the redmine API returns. Anyway, I installed the redmine shared api plugin in my locally installed…
0
votes
1 answer

List only open redmine projects via redmine-java-api

I'm using redmine-java-api 3.1.3 in an older project and tried to implement a minor change today, making it list only open (=non-closed) redmine projects instead of all projects. There seems to be no documentation on this, but I found the property…
Michael Jaros
  • 4,586
  • 1
  • 22
  • 39
0
votes
1 answer

how to get all open issue from easy redmine using api c#

var baseAddress = new Uri("http://www.easyredmine.com/"); using (var httpClient = new HttpClient { BaseAddress = baseAddress }) { using (var response = await httpClient.GetAsync("issues/{id}.xml{?include}")) { string responseData…
0
votes
1 answer

Host redmine to docker redmine ERROR Errno::ECONNRESET: Connection reset by peer

I need a help from you. my task is dockerized my current redmine. almost 2 week I am working on this task. I copied public folder from host redmine to docker container redmine/public I copied all plugins and installed successfully but problem is…
0
votes
1 answer

How to post XML string to api Ruby Faraday

I tried to use Faraday library for Ruby to make the next post request for my API: Need to add API-Key = "xxxxxxxxxxxxxxx" to my header and sent XML inside…
0
votes
2 answers

Redmine Rest API - file attachment, upload token is not complete

I'm trying to add an issue with a file attachment but the response token is not complete. It is the same error as http://www.redmine.org/boards/2/topics/42425 (5 years old question) but there is no response there. The redmine used is a…
0
votes
0 answers

Redmine Rest API : How do I upload a Wiki Page with an attach file

I wrote a script that take in a document and convert it into a string and send it to redmine as a wiki page. THIS WORKED GREAT. NOW, I am trying to attach a file to it and the wiki page is being created and uploaded with the expected text, however,…
Aaron Dasani
  • 73
  • 1
  • 1
  • 9
0
votes
0 answers

Does anyone know how to create a version via Redmine Api Rest?

I want to create a new version for my project via redmine api rest.I folowed the doc on the web https://www.redmine.org/projects/redmine/wiki/Rest_Versions url = Configuration.redmine+"/projects/#{project_id}/versions" uri = URI.parse(url) req =…
0
votes
2 answers

Getting 401 error when using redmine API for a POST request even though I have included the api key

I am trying to make a post request to create a new wiki page using the redmine-api. I am using JavaScript and Axios. However I a getting a 401 error(UnAuthorize). My goal is to be able to send a word document to my redmine and create a wiki page. I…
0
votes
1 answer

Redmine API updating time entry is not implemented?

Updating a time entry: http://www.redmine.org/projects/redmine/wiki/Rest_TimeEntries#Updating-a-time-entry results always in a 404 I'm using Redmine 3.4.6.stable and was using: PUT /time_entries/[id].xml Other action like: Creating a time entry is…
occurred
  • 490
  • 1
  • 5
  • 13
0
votes
1 answer

Redmine Rest API error 'Subject can not be blank'

I am creating issue by using kbsali redmine api, I am receiving subject can not be blank error even I am passing subject $result=$client->issue->create([ 'project_id' => 'projder', 'subject' => 'this is subject subject this is subject…
user2210959
  • 79
  • 1
  • 2
  • 9
0
votes
1 answer

Eclipse plugin Incubator's "Web Templates (Advanced)" plugin (with secured Redmine): Failed to parse RSS feed / invalid xml

Trying to connect some restricted Redmine instance to our Eclipse Mylyn environment it worked in the beginning, but the re-imports did not with some error "Failed to parse RSS feed". I stumbled across this #246440 Eclipse Mylyn ticket where some…
Andreas Covidiot
  • 4,286
  • 5
  • 51
  • 96
0
votes
1 answer

python easyredmine create issue not working

We are trying to make a simple request to create an issue using Easy redmine api (this should be really simple) we have tried from postman and also within pycharm via python code, we always recieve a 200 with the list of issues, but no 201 with ok…
0
votes
1 answer

Redmine + PHP Wamp: How to Install Redmine inside existing Wamp server

I am completely new to RedMine. I want to use RedMine & It's API with PHP (Not Ruby on Rails) & MySQL Table data at local host Wamp Server. But I don't know how to Configure my existing Wamp server to Install Redmine. I don't understand where to…
user5005768Himadree
  • 1,375
  • 3
  • 23
  • 61
0
votes
1 answer

Redmine API Users in Groups

I am Making a wpf app that shows some data from redmine using Redmine.Net.Api. I just want to display users that belong to redmine Groups. I can get all groups Redminemanager manager = new RedmineManager(Config.host, Config.apiKey); var groups =…
Mark
  • 218
  • 1
  • 4
  • 12