Questions tagged [redmine-api]
106 questions
0
votes
3 answers
Redmine Java API: get Issues based on customField value
I am trying to fetch issues based on customField Value.
Tried following but no luck so far. Please help.
Params params = new Params();
/* Getting params from map*/
for (Map.Entry mapEntry : paramMap.entrySet()) {
…

mitrpathak
- 91
- 1
- 10
0
votes
1 answer
How to synchronize planio communication to trello?
I am trying to integrate plan.io with trello so that issue, bug e.t.c communication on planio get synchronized to trello dashboard.
On the internet I am only getting link for redmine to integrate to trello.
Also I found https://zapier.com which…

iamabhaykmr
- 1,803
- 3
- 24
- 49
0
votes
0 answers
The version of redmine is Compatible with redmine-java-api
I use Redmine-java-api to connect to redmine and I get some errors. I think the cause is version of redmine and redmine-java-api.
So about my question, I don't know what's the version of redmine is Compatible with another version of…

Hoàng Nguyễn
- 53
- 1
- 5
0
votes
1 answer
how to create rest api using redmine with nodejs?
is there any idea how can i create rest api using Redmine and nodejs.
i used node-redmine but i don't know how to create rest api.
i also google but there is no any way because i don't have knowledge about redmine

kumbhani bhavesh
- 2,189
- 1
- 15
- 26
0
votes
2 answers
Redmine API request with Jquery, using JSONP, throws mime type error
I'm trying to send a request using Jquery using the Redmine API, which says it has support for jsonp.
So, i tried differents ways to make request with Jquery and i already search for the 'mime type' errors and try to solve using the answers but the…

Isaac Gomes
- 410
- 1
- 6
- 15
0
votes
1 answer
How to update custom fields with file type using REST in redmine?
I'm trying to update a custom field with a file type using rest API.
After properly uploading a file using:
curl --data-binary "@test.pdf" -H "Content-Type: application/octet-stream" -X POST -H "X-Redmine-API-Key:…

quad
- 35
- 5
0
votes
1 answer
Redmine Custom Query to return only specific columns
How to filter Redmine issues to only include specified columns, when using the REST API xml/json format?
I have a custom query to obtain specific columns of issues:
Filter set to "status(open)" and "Due Date(any)"
Options / Selected Columns set to…

n_dev
- 3
- 3
0
votes
1 answer
Python creating a variable dynamically
I'm not a python expert and I encountered an issue working with an already existing API (redmine API but it's not really a problem with the API).
The API give me a method which enable me to get data from a database using a filter to get the type of…

Peni
- 626
- 1
- 7
- 18
0
votes
0 answers
Redmine : wrong Issue content using the API
Upon update of Redmine Issues, we are fetching the new data using the API. In certain cases, we do not fetch the right data : the updated data is not present in the result. What could be wrong ?
To explain in detail, we are using a custom Redmine…

Emmanuel Guiton
- 1,315
- 13
- 24
0
votes
2 answers
Angular 2 access redmine Rest Api, no 'Access-Control-Allow-Origin'
I try to get issues from redmine via them Rest Api. When I call it from Postman I get response, but when I do it from my angular App I get such error
OPTIONS https://redmine.ourDomain.net/issues.json 404 (Not Found)
XMLHttpRequest cannot load…

Stefan
- 1,431
- 2
- 17
- 33
0
votes
1 answer
Redmine plugin for Jenkins: org.json.JSONException: A JSONObject text must begin with '{' at character 1
I am rethrieving the next error in Jenkins when trying to get Redmine Metrics:
hudson.plugins.redmine.MetricsException: com.taskadapter.redmineapi.RedmineFormatException: org.json.JSONException: A JSONObject text must begin with '{' at character…

Lorenzo Lerate
- 3,552
- 3
- 26
- 25
0
votes
1 answer
Testlink integration with redmine (interface:rest) is not working
We have Redmine & Testlink hosted on 2 different servers on Amazon Cloud.
I used below methods / workarounds to establish a connection between these two, however I am getting "Something is preventing to connect to bug tracking system, it will create…

MKay
- 818
- 9
- 32
0
votes
1 answer
c# redmine rest service-Get custom fields
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 =…

user2565525
- 19
- 7
0
votes
0 answers
Tracking download progress of the Redmine API 'GetObjects' call
I would like to know if there is ANY way to track the downloading progress of the following call to the redmine servers:
List GetTickets = new List();
var parameters = new NameValueCollection { { "include", "journals" }, {…

CareTaker22
- 1,260
- 3
- 18
- 36
0
votes
1 answer
redmine create issue assigned_to_id does not work
i am trying to use the redmine API to create new issue via code,
just to test it i am trying to send the data to the API using postman.
i have used amazon to host it.
I try send json via post method. (using postman -plugin for chrome)
url:-…

rohan
- 21
- 7