Search for dashboards
GET
/rest/api/3/dashboard/search
Dashboards
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/dashboard/search'
Response Response Example
200 - Success
{
"self": "https://your-domain.atlassian.net/rest/api/3/dashboard/search?expand=owner&maxResults=50&startAt=0",
"maxResults": 100,
"startAt": 0,
"total": 2,
"isLast": true,
"values": [
{
"description": "Testing program",
"id": "1",
"isFavourite": true,
"name": "Testing",
"owner": {
"self": "https://your-domain.atlassian.net/user?accountId=5b10a2844c20165700ede21g",
"displayName": "Mia",
"active": true,
"accountId": "5b10a2844c20165700ede21g",
"avatarUrls": {
"16x16": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=16&s=16",
"24x24": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=24&s=24",
"32x32": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=32&s=32",
"48x48": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=48&s=48"
}
},
"popularity": 1,
"self": "https://your-domain.atlassian.net/rest/api/3/dashboard/1",
"sharePermissions": [
{
"type": "global"
}
],
"view": "https://your-domain.atlassian.net/Dashboard.jspa?selectPageId=1"
},
{
"description": "Quantum initiative",
"id": "2",
"isFavourite": false,
"name": "Quantum ",
"owner": {
"self": "https://your-domain.atlassian.net/user?accountId=5b10a2844c20165700ede21g",
"displayName": "Mia",
"active": true,
"accountId": "5b10a2844c20165700ede21g",
"avatarUrls": {
"16x16": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=16&s=16",
"24x24": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=24&s=24",
"32x32": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=32&s=32",
"48x48": "https://avatar-management--avatars.server-location.prod.public.atl-paas.net/initials/MK-5.png?size=48&s=48"
}
},
"popularity": 0,
"self": "https://your-domain.atlassian.net/rest/api/3/dashboard/2",
"sharePermissions": [
{
"type": "loggedin"
}
],
"view": "https://your-domain.atlassian.net/Dashboard.jspa?selectPageId=2"
}
]
}
Request
Query Params
dashboardName
string
optional
name
.accountId
string
optional
owner.accountId
. This parameter cannot be used with the owner
parameter.owner
string
optional
accountId
instead. See the migration guide for details. User name used to return dashboards with the matching owner.name
. This parameter cannot be used with the accountId
parameter.groupname
string
optional
groupId
is recommended. Group name used to return dashboards that are shared with a group that matches sharePermissions.group.name
. This parameter cannot be used with the groupId
parameter.groupId
string
optional
sharePermissions.group.groupId
. This parameter cannot be used with the groupname
parameter.projectId
integer
optional
sharePermissions.project.id
.orderBy
string
optional
description
Sorts by dashboard description. Note that this sort works independently of whether the expand to display the description field is in use.favourite_count
Sorts by dashboard popularity.id
Sorts by dashboard ID.is_favourite
Sorts by whether the dashboard is marked as a favorite.name
Sorts by dashboard name.owner
Sorts by dashboard owner name.startAt
integer
optional
maxResults
integer
optional
status
string
optional
expand
string
optional
description
Returns the description of the dashboard.owner
Returns the owner of the dashboard.viewUrl
Returns the URL that is used to view the dashboard.favourite
Returns isFavourite
, an indicator of whether the user has set the dashboard as a favorite.favouritedCount
Returns popularity
, a count of how many users have set this dashboard as a favorite.sharePermissions
Returns details of the share permissions defined for the dashboard.editPermissions
Returns details of the edit permissions defined for the dashboard.isWritable
Returns whether the current user has permission to edit the dashboard.Responses
Modified at 2023-07-13 03:27:27