Home / Formulas / Jira

Jira

jira

Authenticate with Jira using API tokens or OAuth. Access issues, projects, and boards.

🔐 Authentication Methods

api_token
API Token
  • Go to your Atlassian profile settings
  • Select Security > API tokens
  • Create a new API token
  • Copy the token
oauth
OAuth (3LO)
authorize: https://auth.atlassian.com/authorize
token: https://auth.atlassian.com/oauth/token
Scope: read:jira-work write:jira-work read:jira-user
  • Create a new app in the Developer Console
  • Configure OAuth 2.0 (3LO)
  • Set callback URL to http://localhost:8080/callback
  • Copy Client ID and Client Secret

👤 Identity

Instance: e.g., company.atlassian.net

🌐 APIs

rest
Base URL: https://{instance}/rest/api/3
Auth Header: Authorization: Bearer {token}
Spec Type: openapi
Methods: api_token oauth
← Back to all formulas