Jira Rest API GET/POST Request with Postman | Create Jira Issues Tutorial

  Рет қаралды 79,504

Hong Ly Tech

Hong Ly Tech

Күн бұрын

Пікірлер: 57
@honglytech
@honglytech 4 жыл бұрын
All Jira rest API endpoints showed in this video can be found here honglytech.com/jira/jira-rest-api Timestamps 00:00 Introduction to Jira Rest API 05:16 Access Jira Cloud Rest API 12:02 Jira Clod Get Request 17:21 Jira Cloud Get Request in Postman 21:49 Jira Cloud Post Request in Postman 28:08 Assign Epic Link 30:57 Jira Server Rest API 34:17 Jira Server Get Request 39:17 Jira Server Get Request in Postman 40:32 Jira Server Post Request in Postman 44:05 Summary
@GusGuitarPD
@GusGuitarPD 2 жыл бұрын
AMAZING! Thanks for sharing. I've wasted hours in the documentation and could resolve my issue within a couple minutes with your video.
@I-qb9wg
@I-qb9wg Жыл бұрын
I would like to see more Postman + Jira API tutorial. Fo example, modify existing tickets in Jira using postman. I'm new to Jira, Postman and general API's as well, this video helped me a lot and I would like to see more.
@vedashreeparanjape3881
@vedashreeparanjape3881 4 жыл бұрын
Summary to create new issue: 1. Login to In your JIRA account. 2. Create API token here: id.atlassian.com/manage-profile/security/api-tokens 3. Save the API token for further use 4. Open postman 5. Create new post request 6. enter url: enteryourid.atlassian.net/rest/api/3/issue 7. In Authorization Tab select Basic Auth 8. In username enter the email id which you used to login to JIRA 9. In password enter the API token created in step 2,3 10. In Body Tab Select raw>JSON and enter below text there as it is: { "fields": { "summary": "Create new issue in jira", "project":{ "id": "10000" }, "issuetype":{ "id":"10003" } }, "issuelist":{ "addto":[] } } 11. Send the request and the issue is created you get status code 201 created! Note: Make sure your project id is 10000. If not sure about your project id first get the project id sending the GET request to enteryourid.atlassian.net/rest/api/3/project. If it is your first ever project on JIRA then by default the id is 10000 according to what i observed.
@kainatkhan2459
@kainatkhan2459 3 жыл бұрын
This is the only video I found very helpful and describe each steps
@zhaowencheng8690
@zhaowencheng8690 3 жыл бұрын
Best Jira tutorial with postman online!!
@honglytech
@honglytech 3 жыл бұрын
Thanks
@aravinddesikamani
@aravinddesikamani Жыл бұрын
Thank you very much for this tutorial! This saved me a lot of time
@honglytech
@honglytech Жыл бұрын
Glad it helped!
@breno1754
@breno1754 3 жыл бұрын
What an example of a class, thank you so much from 🇧🇷
@bookmark2846
@bookmark2846 Жыл бұрын
Really helped me. Thank you!
@SJ-rg7oj
@SJ-rg7oj 3 жыл бұрын
Thank you for making this video helped in a simple way to understand GET and POST
@honglytech
@honglytech 3 жыл бұрын
You’re welcome
@soumyamr2355
@soumyamr2355 3 жыл бұрын
Thanks for a very clear video.. Its really helpful to understand.
@yashwanthks9711
@yashwanthks9711 Жыл бұрын
Thank you very much, this session is very informative
@honglytech
@honglytech Жыл бұрын
Glad to hear that!
@slablife
@slablife 3 жыл бұрын
This was very helpful and I was able to get everything working... great video!
@sabrinekammoun9646
@sabrinekammoun9646 Жыл бұрын
thanks it saved my life
@naveentech1388
@naveentech1388 3 жыл бұрын
Thanks Hong!! Very helpful keep going
@honglytech
@honglytech 3 жыл бұрын
Thanks Naveen!
@sauravbv
@sauravbv 3 жыл бұрын
Very helpful, Thank you.
@ThePrashant13feb
@ThePrashant13feb Жыл бұрын
Thanks, This was helpful :)
@bdmtnz
@bdmtnz 3 жыл бұрын
First comment in Spanish: Bro excelente video, te mereces el sub.
@lego2390
@lego2390 2 жыл бұрын
Thank you, cool video!!
@emanuelbarrionuevo1345
@emanuelbarrionuevo1345 3 жыл бұрын
Very Very helpful and very well explained. Thaks
@orkhanmammadli1
@orkhanmammadli1 2 жыл бұрын
thank you, great tutorial!
@tavomena3054
@tavomena3054 4 жыл бұрын
This was a very helpful video! Thanks
@praseebkdas25
@praseebkdas25 3 жыл бұрын
@Hong Ly Can we create JIRA ticket under particular Kanban board through REST API ?
@ajays7582
@ajays7582 11 күн бұрын
Thanks Boss
@이석영-i9r
@이석영-i9r 2 жыл бұрын
Nice !!
@stemi5601
@stemi5601 2 жыл бұрын
Thank you.
@ComodoDragon-sl7xd
@ComodoDragon-sl7xd 11 ай бұрын
I am getting `405Method Not Allowed` at 24.15. Not able to determine how to resolve.
@BarkvilleStories
@BarkvilleStories 5 ай бұрын
nice man
@geraldgrogan
@geraldgrogan 4 жыл бұрын
Thanks for the great video
@luckxn
@luckxn 3 жыл бұрын
Thanks for the sharing. Is there anyway to connect to Jura align via api?
@shivaprasad2033
@shivaprasad2033 3 жыл бұрын
Thank You Very Much..👍
@honglytech
@honglytech 3 жыл бұрын
Welcome
@ignacioparellada4117
@ignacioparellada4117 Жыл бұрын
What tool do you use, that allows you to see the request tidy? Thanks!
@shedymandawe3327
@shedymandawe3327 2 жыл бұрын
I am using chrome and when i enter the the URL for API it is not formatted just like yours. How to do that?
@Teerian1
@Teerian1 3 жыл бұрын
Thanks, very helpful. But I have an issue. GET requests work like a charm, I get data without issue. As soon as I switch to POST, it stops working and I end up with an error message: "Site temporarily unavailable" and I'm trying to find what could be wrong and I can't figure it out.
@vipinsharma-zx9cb
@vipinsharma-zx9cb Жыл бұрын
Hi Can we use frontend application to call JIRA rest APi's... Like angular or react?
@stefanregensburger1336
@stefanregensburger1336 3 жыл бұрын
Thank you for the helpful video! I am trying to reach the structure plugin via the rest/api in order to send a post request to change the structure. Do you know how to access the json file?
@aleksneso634
@aleksneso634 3 жыл бұрын
am getting error "errorMessages": [ "Issue does not exist or you do not have permission to see it." ], "errors": {} And im working with my Admin Account who creates the Project. Any Ideas? I created a new API token and still not working
@reggaeversevisuals
@reggaeversevisuals 3 жыл бұрын
am able to create project (software) with REST on JIRA server, how do make sure its a Scrum project??
@honglytech
@honglytech 3 жыл бұрын
Hi Wainaina, you can take a look here to find the differences www.atlassian.com/agile/tutorials/creating-your-agile-board
@samutsaritv6801
@samutsaritv6801 3 жыл бұрын
What if I have thousand of users should I create them all a token?, that's not feasible I need only to pass on the current email to create an issue
@santhoshnayak123
@santhoshnayak123 3 ай бұрын
I'm getting 503 error but able to open jira page
@manishkumarsingh1083
@manishkumarsingh1083 2 жыл бұрын
Hi, Can we integrate Excel with Jira?
@gopalbhupal3890
@gopalbhupal3890 2 жыл бұрын
can u make the video to login and create user in jira in java
@jaguartechm
@jaguartechm 4 жыл бұрын
i am getting error "errorMessages": [ "Issue does not exist or you do not have permission to see it." ], "errors": {}
@sharru444
@sharru444 4 жыл бұрын
I am getting the same issue. Were you be able to solve it ?
@MrDBH72
@MrDBH72 3 жыл бұрын
I am getting the same error. Is there a solution for this?
@0xbitbybit
@0xbitbybit 3 жыл бұрын
read the problem guys, you need to be given permission to access the api from your admin
@ashwanigarg115
@ashwanigarg115 3 жыл бұрын
Hi, Can anyone share PostMan Collection for JIRA APIs, it would be very helpful for me to understand it easily?
@hellotima103
@hellotima103 3 жыл бұрын
how do I GET JIRAs from a widget or a filter?
@LubnaIsrar1886
@LubnaIsrar1886 3 жыл бұрын
How to add attachment in jira using rest api
@TerenceMurphy
@TerenceMurphy Жыл бұрын
DUDE!!!! I WANT TO KISS YOU RIGHT NOW!!! THANK YOU!!!!👏👏👏
REST API Crash Course - Introduction + Full Python API Tutorial
51:57
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 178 МЛН
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 269 #shorts
00:26
黑的奸计得逞 #古风
00:24
Black and white double fury
Рет қаралды 28 МЛН
Postman 2024 | Complete Step by Step | Getting Started for Beginners
1:35:56
Automation Step by Step
Рет қаралды 10 М.
What is a REST API?
9:12
IBM Technology
Рет қаралды 1,5 МЛН
Postman Tutorial #7 - HTTP Methods GET and POST in Postman
13:18
Software Testing Mentor
Рет қаралды 50 М.
Postman Beginner's Course - API Testing
2:09:38
freeCodeCamp.org
Рет қаралды 2,5 МЛН
Do NOT Learn Kubernetes Without Knowing These Concepts...
13:01
Travis Media
Рет қаралды 312 М.
Postman Tutorial #20 -Why API Testing? | GET Projects API Call in Jira
18:19
Software Testing Mentor
Рет қаралды 10 М.
Deep Dive into REST API Design and Implementation Best Practices
12:02
Software Developer Diaries
Рет қаралды 57 М.
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 178 МЛН