Jira Rest API

This article will cover Jira Cloud and Server rest API endpoints.

Jira Cloud supports both version 2 and 3 rest API

Jira Cloud – Get Requests v2

/rest/api/2/project
/rest/api/2/issue/{key}
/rest/api/2/issue/createmeta
/rest/api/2/issue/createmeta?projectKeys={key}&expand=projects.issuetypes.fields

Jira Cloud – Get Requests v3

/rest/api/3/project
/rest/api/3/issue/{key}
/rest/api/3/issue/createmeta
/rest/api/3/issue/createmeta?projectKeys={key}&expand=projects.issuetypes.fields

Jira Cloud – Post Request v2

{
   "fields":{
      "project": {
         "key":"JOL"
      },
      "summary":"Jira Rest API on Local via Postman with Epic link",
      "description":"Creating an issue using project keys and issue type",
      "issuetype": {
         "name":"Story"
      }, 
      "customfield_10100": "JOL-4"
   }
}
/rest/api/2/issue/

Jira Server – Get Requests v2

Jira Server doesn’t support version 3. The endpoints are the same as Jira Cloud – Get Request v2

Jira Server – Post Request v2

Jira Server only support version 2. The endpoints are the same as Jira Cloud – Post Request v2

References

https://developer.atlassian.com/cloud/jira/software/rest/intro/

https://confluence.atlassian.com/cloud/api-tokens-938839638.html

https://developer.atlassian.com/server/jira/platform/rest-apis/

https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/

https://docs.atlassian.com/software/jira/docs/api/REST/8.10.0/

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 1

No votes so far! Be the first to rate this post.

Leave a Comment

Your email address will not be published. Required fields are marked *