Questions tagged [redmine-api]

106 questions
1
vote
1 answer

RedMine Create Issue Containing HTML through API

I have a webhook which automatically opens tickets from our customer support software Freshdesk in Redmine. The description from the support software is sent containing plain HTML. When passing this to the Redmine API to create an issue, the…
L. Young
  • 163
  • 3
  • 7
  • 24
1
vote
1 answer

Parse xml data using only JavaScript into arrays for filtered table and chart

I'm new to JavaScript so any help would be greatly appreciated. I'm currently designing a website that will fetch redmine xml data. The xml data is similar to: http://www.redmine.org/projects/redmine/issues.xml?set_filter=100. It is also available…
Roselle
  • 11
  • 3
1
vote
0 answers

Redmine - populate a custom field consuming a web service

I'm new to Redmine and could not find answers for some customized solutions. I've already posted this question on Redmine's forum, still no answer. In my job, we're trying to use Redmine for controlling a business process, so we need to do some…
1
vote
0 answers

RedMine API - Create Issue with AJAX

I want to create a new task in Redmine via jQuery. I tried the code below, but without success. function createIssue() { var payload = { "issue": { "project_id": 127, "subject": "Example", …
1
vote
1 answer

select only issues with relations with REST API in redmine

I'm trying to get only issues with relations with another issue in redmine REST API. I can't find any reference over internet for doing so https://redmine.xxxx.com/issues.json?include=relations another possibility would be getting all issues, but…
camous
  • 998
  • 11
  • 27
1
vote
1 answer

Redmine API - USER - POST Creates a user

http://demo.redmine.org/account/register http://demo.redmine.org/users.xml http://www.redmine.org/projects/redmine/wiki/Rest_Users#POST I tried to create a user using the http method post as the Redmine wiki page suggest. it's not working. The page…
miss h
  • 133
  • 1
  • 2
  • 15
1
vote
2 answers

How to get issues from Redmine API REST

Using the API Redmine using the wrapper Kevin Saliou, I am trying to get the issues of a particular project but is not being returned correctly, both issues as the open and closed are incorrect. $client =…
1
vote
1 answer

I cant add Issue to redmine (rest-api)

I try create new Issue according to site: http://www.redmine.org/projects/redmine/wiki/Rest_Issues#Creating-an-issue I try send json via post method. (using postman -plugin for chrome) Post query: [my-domain]/redmine/issues.json { "issue": { …
1
vote
1 answer

Redmine returns JSON with word "issues" padded in start

I have setup Redmine locally. I want to Get and Post data on Red mine in order to test my Extjs application. Redmine RestApi support is available. This link show all the issue on Redmine available http://www.redmine.org/issues.json Problem is that…
Abdul Rehman Yawar Khan
  • 1,088
  • 3
  • 17
  • 40
1
vote
4 answers

Redmine Add multiple watchers through rest api

I need to create Redmine issues through api. I have an xml draft, that is posted to the redmine by wget.exe. The xml looks like: 145 10
Shkutu
  • 51
  • 4
1
vote
1 answer

How do I query ActiveResource without a limit?

I am attempting to collect all entries of an object from an instance of Redmine using its ruby REST API. The code I'm trying: require 'rubygems' require 'active_resource' class Issue < ActiveResource::Base self.site = '' self.user…
Centimane
  • 280
  • 5
  • 17
1
vote
1 answer

How do You Insert New Relations in Redmine

I am trying to find the syntax for inserting a new Relation between issues in Redmine using Ruby. The code I've been trying: require 'rubygems' require 'active_resource' class Issue < ActiveResource::Base self.site = '[the site]' self.user…
Centimane
  • 280
  • 5
  • 17
1
vote
1 answer

How to use Google Apps Script to create issues in Redmine?

I'm trying to create an issue in Redmine using Google Apps Script, the code is following: function create_issue() { var payload = { 'project_id': 'helpdesk', 'subject': 'This is a test ticket', 'description': 'This is just a genius…
Trinh Nguyen
  • 1,445
  • 1
  • 14
  • 22
1
vote
0 answers

Redmine rest api returns html document

I try connect pycharm/small python projects to my redmine server, but rest api return this: Error fetching issues for: /projects//issues.xml?key=(my secret…
Axazeano
  • 890
  • 9
  • 23
1
vote
2 answers

Post request shows json key repeated and nested - redmine and ruby

I am trying to create a post an issue to redmine using their API. They say that I should use this format. http://www.redmine.org/projects/redmine/wiki/Rest_api_with_ruby Here is my code. issue = Issue.new( :subject => 'Feedback', :assigned_to_id…
AndraeRay
  • 2,348
  • 2
  • 12
  • 9