Have been using jira api for years to automatically assign developer to an issue.
Nothing has been changed but from today if I try to update jira issue I just get a response code 204 and nothing changes (assignee field still empty)
PUT request: https://***.atlassian.net/rest/api/2/issue/MD-23468
body:
{"fields":{"assignee":{"name":"***"},"customfield_11517":[{"name":"***"}]}}
Is there an issue with jira api right now? I got no other explanation
I started having this problem when trying to create a project and specifying the project lead by username. I now have to specify leadAccountId and use accountId.
This deprecation is explained in the API docs: https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-project-post
There is also general info here on deprecations across the API:
I ran into this the other day using https://github.com/andygrunwald/go-jira. It appears that name is not longer returned by the Jira API. I had to use displayName.
Additionally, I'm seeing this on API requests as well: Invalid Usage: 'accountId' must be the only user identifying query parameter in GDPR strict mode.
It appears to be related to a deprecation from the last couple years: https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did this PR to try to fix this @dhollinger https://github.com/jenkinsci/jira-steps-plugin/pull/103 waiting for the approval
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We use Jira REST to search for issues and today it started failing.
We are using it with Jenkins (Jira Step plugin). Are you using the API with Jenkins?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.