Api to get the dashboard details in json format

When i try to get the dashboard details I can get only the below details.

/rest/api/2/dashboard/22119

{
“id”: “23233”,
“name”: “Personal”,
“self”: “https://jira.example.com/rest/api/2/dashboard/22119”,
“view”: “https://jira.example.com/secure/Dashboard.jspa?selectPageId=22119”
}

is it possible to get the dashboard details as json ? like in the above dash board will show the issues assigned to myself. I want the entire dashboard details as json.

Hi @JegadheswaranPalanis,

The documentation of the V2 and V3 APIs to get dashboard data indicates more data should be returned than the short snippet you provided.

However, with regards to your statement…

the above dash board will show the issues assigned to myself

…the panels within a dashboard are call gadgets. My understanding is that you may have a gadget showing all issues assigned to you and you’d like to use the dashboard API to determine this. It may not be possible to get all the details about the content of dashboard items. If you specifically want to find the issues assigned to yourself, you can use the issue search API, providing JQL assignee = currentUser().

Regards,
Dugald