Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to create the Api endpoint to connect Jira with other systems?

Kaesler Jonathan March 27, 2024

It's about migrating the local Jira to Jira Cloud and now the new connections with the other systems have to be established. I couldn't make much sense of the documentation. How do I get the endpoint to be able to make queries between the systems?

Best regards

1 answer

1 accepted

0 votes
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 27, 2024

Welcome to the Atlassian Community!

You don't create any end-point in Jira.  They already exist automatically.

To "get" the endpoint you want to use, you will need to read the documentation over at https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/ to work out what the end-point you want to hit is, and then issue a network call to it.  It will then return what you asked for (or an error if it can't service the call)

For example:

curl --request GET \ --url 'https://your-domain.atlassian.net/rest/api/3/issue/ABC-123' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'

Will give you a JSON representation of all the data on the issue ABC-123

Note the bit about "api token" - you will need to read through https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#authentication to work out the api token to use.

Kaesler Jonathan March 27, 2024

Thank you, I will have a look at the links and test them, I think you have definitely helped me.

Like Nic Brough -Adaptavist- likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events