Skip to main content
GET
/
issues
/
dashboard
List dashboard issues
curl --request GET \
  --url https://api.example.com/issues/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "issues": [
    {
      "id": "<string>",
      "name": "<string>",
      "priority": "<string>",
      "status": "<string>",
      "agent_name": "<string>",
      "category": "<string>",
      "first_seen_at": "2023-11-07T05:31:56Z",
      "last_seen_at": "2023-11-07T05:31:56Z",
      "occurrence_count": 123,
      "trace_count": 123,
      "unique_user_count": 123,
      "linked_metric": {
        "id": "<string>",
        "name": "<string>"
      },
      "validation": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_id
string
required

Project ID.

Response

Dashboard issues

issues
object[]
required