Prerequisites
- An Atlassian account with access to a Jira Cloud site
- Permission to create API tokens (available to all Atlassian accounts)
Creating a Jira API Token
- Sign in to your Atlassian account at id.atlassian.com
- Navigate to Security → API tokens
- Click Create API token
- Enter a label (e.g.
Jinba Flow) and click Create - Copy the generated token — it will only be shown once
A classic token (prefix
ATATT…) is recommended — it has full account
access and needs no scope configuration. Scoped tokens (ATCTT…) also work and
are auto-routed through the api.atlassian.com gateway, but you must grant the
right scopes yourself. Keep base_url set to your site
(https://your-domain.atlassian.net) either way.Setting Up in Jinba Flow
- Go to your workspace settings in Jinba Flow
- Navigate to the Secrets section
- Find Jira in the list and click Add
- Enter your API token:
- API Token: The token you copied from Atlassian
- Click Save
Configuring Your Jira Steps
Each Jira tool step requires the following config fields in addition to the secret:| Field | Description | Example |
|---|---|---|
base_url | Your Jira site URL | https://your-domain.atlassian.net |
email | Your Atlassian account email | you@example.com |
api_token | Select your saved Jira secret | — |
Finding Your Jira Site URL
Your Jira Cloud base URL follows the patternhttps://<your-domain>.atlassian.net. You can find it in the browser address bar when viewing your Jira board.
Finding a User’s Account ID
Jira identifies users byaccountId, not by name or email. To find an account ID:
- Open the user’s Jira profile
- The account ID appears in the URL:
.../jira/people/<accountId>
JIRA_SEARCH_ISSUES or the Jira user search API to look up account IDs programmatically.