Can anyone help with rest api to get the details of existing projects?
https://turvojira.atlassian.net/rest/api/3/dashboard/:id
Hi Suman,
What is your trouble exactly?
Hi Aleksandr,
I was trying to fetch the data of my projects so that I can create report out of it .
Somehow it not going through .
For example:
https://{{host}}/rest/api/3/project/:projectIdOrKey?
I am using the above api after replacing the host and also using my credential and trapidView=19&projectKey=SUP .
But the result is coming blank .
Don't know why
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is because you try to use query parameters instead of path variables. In your case you should use this URL: https://turvojira.atlassian.net/rest/api/3/project/SUP
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you suggest what should if I want to get Support - Kanban board
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To get the board you can use https://turvojira.atlassian.net/rest/agile/1.0/board/19
You can find details in Atlassian cloud developer documentation:
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.