I'm searching for an api call that can mark a dashboard as favorite by its id : as so
/rest/api/2/dashboard/{dashboardID}/favourite
but the above api call is always returning a 404 status code
To make a dashboard as favorite on server jira instance use the following api call :
PUT /rest/api/1.0/dashboards/{dashboardId}/favourite
To remove a dashboard from favorites on Jira Server instances use the following api call :
DELTE /rest/api/1.0/dashboards/{dashboardId}/favourite
Make sure to replace {dashboardId} with the id of the desired dashboard
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.