List an Organization's Custom Dashboards

GET /api/0/organizations/{organization_id_or_slug}/dashboards/

Retrieve a list of custom dashboards that are associated with the given organization.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

Query Parameters:

per_page (integer)

Limit the number of rows to return in the result. Default and maximum allowed is 100.

cursor (string)

A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.

Scopes

<auth_token> requires one of the following scopes:
  • org:admin
  • org:read
  • org:write
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/dashboards/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "id": "1",
    "title": "Dashboard",
    "dateCreated": "2024-06-20T14:38:03.498574Z",
    "createdBy": {
      "id": "1",
      "name": "Admin",
      "username": "admin",
      "email": "admin@sentry.io",
      "avatarUrl": "www.example.com",
      "isActive": true,
      "hasPasswordAuth": true,
      "isManaged": false,
      "dateJoined": "2021-10-25T17:07:33.190596Z",
      "lastLogin": "2024-07-16T15:28:39.261659Z",
      "has2fa": true,
      "lastActive": "2024-07-16T20:45:49.364197Z",
      "isSuperuser": false,
      "isStaff": false,
      "experiments": {},
      "emails": [
        {
          "id": "1",
          "email": "admin@sentry.io",
          "is_verified": true
        }
      ],
      "avatar": {
        "avatarType": "letter_avatar",
        "avatarUuid": null,
        "avatarUrl": "www.example.com"
      }
    },
    "widgetDisplay": [],
    "widgetPreview": []
  },
  {
    "id": "2",
    "title": "Dashboard",
    "dateCreated": "2024-06-20T14:38:03.498574Z",
    "createdBy": {
      "id": "1",
      "name": "Admin",
      "username": "admin",
      "email": "admin@sentry.io",
      "avatarUrl": "www.example.com",
      "isActive": true,
      "hasPasswordAuth": true,
      "isManaged": false,
      "dateJoined": "2021-10-25T17:07:33.190596Z",
      "lastLogin": "2024-07-16T15:28:39.261659Z",
      "has2fa": true,
      "lastActive": "2024-07-16T20:45:49.364197Z",
      "isSuperuser": false,
      "isStaff": false,
      "experiments": {},
      "emails": [
        {
          "id": "1",
          "email": "admin@sentry.io",
          "is_verified": true
        }
      ],
      "avatar": {
        "avatarType": "letter_avatar",
        "avatarUuid": null,
        "avatarUrl": "www.example.com"
      }
    },
    "widgetDisplay": [],
    "widgetPreview": []
  }
]