Forum Discussion

Akshata9's avatar
Akshata9
Occasional Contributor
6 years ago
Solved

How to create Jira issuetype= Test using API with JWT authorization

Here we are trying to create Jira issue-Test using Jira APIs but getting authorization error 403

 

POST: https://<<jira-url>>/rest/api/2/issue/

{
 "project": {
       "key": "testkey"
        },
        "summary": "Testissue",
        "description": "test via Api",
        "issuetype": {
            "name": "Test"
        }
      }

 

 

7 Replies