Questions tagged [jira-rest-api]

JIRA REST APIs are for developers who want to integrate JIRA with other standalone or web applications and administrators who want to script interactions with the JIRA server.

The Atlassian REST APIs provide a standard interface for interacting with JIRA and our other applications.

REST APIs provide access to resources (data entities) via URI paths. To use a REST API, your application will make an HTTP request and parse the response. Your methods will be the standard HTTP methods like GET, PUT, POST and DELETE. REST APIs operate over HTTP(s) making it easy to use with any programming language or framework.

The input and output format for the JIRA REST APIs is JSON.

JIRA uses the Atlassian REST plugin to implement the JIRA APIs. The REST plugin is bundled with JIRA. You can add your own REST APIs to JIRA by creating a JIRA plugin that includes the REST plugin module. See the basic principles we employ in our REST API design.

Source:

1188 questions
-3
votes
1 answer

how get info from jira api on c#

I am writing an asp.net mvc application on c#, i have the task of writing a controller that receives data from JIRA via jira api, I have a format link: https://jira.xxx.ru/rest/api/2/search?jql=project=yyy I know the login and password for…
just
  • 1
  • 4
-3
votes
1 answer

Jira Python: Syntax error appears when trying to print

from jira.client import jira options = {'server': 'https://URL.com'} jira = JIRA(options, basic_auth=('username', 'password')) issues = jira.search_issues('jqlquery') for issue in issues: print issue I want to print the output of the jql…
-4
votes
1 answer

How to create/delate/displace an issue in jira Kanban using C#?

It’s possible to control / update a jira kanban board using c# with librarys like attlasian.sdk or techtalk/JiraRestClient , How to create/delate/displace an issue in jira Kanban using C# ?
sab
  • 1
1 2 3
79
80