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
Community moderators have prevented the ability to post new answers.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.