Questions tagged [jira-rest-api]

The JIRA REST APIs cater to developers looking to seamlessly integrate JIRA with various standalone or web applications, as well as administrators seeking to automate interactions with the JIRA server.

PHP Jira OAuth: Error 401 - Unauthorized due to oauth_problem: "signature_invalid"

Currently, I am working on creating tools for logging into Jira using OAuth. For this, I am referring to a sample tutorial available at this link. Upon implementation, the response I receive is as follows: [response] HTTP/1.1 401 Unauthorized Server: Apa ...

Having difficulty modifying the custom_field in Jira using Python

Encountering issues while trying to update fields for an problem in Jira using Python. Upon examining the JSON raw data, I found that it is located at: {fields:{'customfield_10000':'some text'} Despite attempting various methods like: issue.update(fiel ...

I'm currently working with ReactJS and attempting to retrieve JSON data from a REST API in JIRA, but I'm facing challenges in achieving this

I've been struggling for hours trying to understand why I am unable to access and transfer data in my array from the JSON data in JIRA using the REST API. Basically, I am attempting to retrieve the JSON data from the JIRA website via URL with Basic Authent ...

Strip the fields from objects prior to transmitting to json

I have a Jira object that interacts with the Jira rest api. Initially, I only had one Jira project, so dealing with a single set of fields worked perfectly fine. However, as my projects expanded and diversified, each with unique sets of fields, I found mys ...