Hi,
Can some one will help me out how to check the Issue Id for the issue.
Please provide me the steps to navigate the same.
Thanks,
You can obtain the issue ID by using REST API call -
Here is the syntax - https://<your instance site>.atlassian.net/rest/api/latest/issue/<your issue key>
Example - https://acme.atlassian.net/rest/api/latest/issue/ACME-111
Your will get the issue content results in a JSON format. The first section of the output will give you the issue ID
Example output -
{
"expand": "renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations",
"id": "1528151",
"self": "https://acme.atlassian.net/rest/api/latest/issue/1528151",
"key": "ACME-111",
.....
Hope this helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Technology Applications Team
Viasat Inc.
Hi @Sreenadh
Type on you browser https://YOURDOMAIN.atlassian.net/rest/api/3/issue/ISSUEKEY
Replace YOURDOMAIN with your actual domain and ISSUEKEY with the actual issue key. You should get a JSON response and you will find the issue id inside there:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.