Reputation: 221
I don't have much experience with REST. Trying to extract some stats from my company Jira, and don't want to use JQL.
The question is, the token that I need to make the API calls, do I get it from my company's Jira or do I need to create an account with Atlassian and use the token from that account?
Thanks in advance.
Upvotes: 2
Views: 4013
Reputation: 832
In Jira Server you could just use Basic Auth.
btoa("your-username:yourpassword")
A token should be generated, You can use it to authenticate with Postman or any other API Tool you might use.
Headers: "Authorization : Basic ${token}"
Jira cloud behaves different,
In your Atlassian application go to:
In Confluence, select your profile picture at top right of the screen, then choose Settings > Personal Access Tokens .
In Jira, select your profile picture at the top right of the screen, then choose Profile.
Once you access your profile,
select Personal Access Tokens in the left-hand menu. Select Create token.
Give your new token a name. Optionally, for security reasons, you can set your token to automatically expire after a set number of days.
Upvotes: 0
Reputation: 325
You should be able to create your own access token from within Jira when you are logged in.
From the Documentation:
In your Atlassian application go to:
Select Create token.
Give your new token a name.
Click Create.
Your personal access token is created. Copy the token and store it in a safe space.
However this might depend on your specific Jira installation. Your companies system administrators might have restricted this feature.
Upvotes: 1