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
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.
Thank you, I will have a look at the links and test them, I think you have definitely helped me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.