-
You can have the option to sign up by Enter your email or continue with Google, Microsoft, etc.
-
To complete the setup, Atlassian will send an e-mail verification.
a. If you don't see the verification e-mail, check your spam folder.
b. If you still don't see the verification e-mail, return to the login screen to resend the e-mail.
-
After completing the process, it will redirect to https://start.atlassian.com/.
-
You may be asked if you want to select a second product. After you decide whether or not to do that, click Next.
-
From Work email, enter the e-mail address you're going to use for this product and Your site name and click on Agree.
-
Now, Jira will show you the templates to select for your first project. Select the Kanban (POPULAR) project template.
-
Enter the project Name and Create project.
-
After the setup completion, it will be redirected to your project timeline page.
-
After setting up the project, go to the project settings Issue types.
a. Project settings → Issue types
-
For each Issue types, add the Priority field and Save changes.
An API Token is required to authenticate a script or other process with an Atlassasian Cloud Product.
-
Log in to the Atlassian platform to access Jira Cloud or click here to directly open the page to create the API token.
-
Go to Settings → Atlassian account settings → Security → API token.
-
Click on "Create API token".
a. Enter a distinctive and concise Label for your token in the window that display, then click Create.
-
Copy the token to your clipboard.
NOTE:
- For security reasons it isn't possible to view token after closing the creation dialog; if necessary, create a new token.
- You should store the token securely, just as for any password.
-
Create a string that has a format of user_email:api_token.
-
Encode the string using Base64 encoding.
For Linux/MacOS
echo -n [email protected]:api_token | base64
For Windows 7 and later, using Microsoft Powershell
$Text = ‘[email protected]:api_token_string’ $Bytes = [System.Text.Encoding]::UTF8.GetBytes($Text) $EncodedText = [Convert]::ToBase64String($Bytes) $EncodedText
-
Supply an
Authorization
header with contentBasic
followed by the encoded string.curl -D- \ -X GET \ -H "Authorization: Basic ZnJlZDpmcmVk" \ -H "Content-Type: application/json" \ "https://your-domain.atlassian.net/rest/api/2/issue/issue-id"