Sentry · Example Payload

Sentry List Organization Issues Example

Error MonitoringDebuggingObservabilityApplication Performance ManagementDeveloper Tools

Sentry List Organization Issues Example is an example object payload from Sentry, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://sentry.io/api/0/organizations/my-organization/issues/",
    "headers": {
      "Authorization": "Bearer sntryu_YOUR_AUTH_TOKEN",
      "Content-Type": "application/json"
    },
    "queryParameters": {
      "query": "is:unresolved",
      "statsPeriod": "14d",
      "limit": 25,
      "sort": "date"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json",
      "Link": "<https://sentry.io/api/0/organizations/my-organization/issues/?cursor=1:0:1>; rel=\"next\"; results=\"true\"; cursor=\"1:25:0\""
    },
    "body": [
      {
        "id": "9876543",
        "shortId": "MYORG-42",
        "title": "TypeError: Cannot read property 'map' of undefined",
        "culprit": "components/Dashboard.render",
        "permalink": "https://my-organization.sentry.io/issues/9876543/",
        "logger": null,
        "level": "error",
        "status": "unresolved",
        "isPublic": false,
        "platform": "javascript",
        "project": {
          "id": "111",
          "name": "my-frontend",
          "slug": "my-frontend"
        },
        "type": "error",
        "metadata": {
          "type": "TypeError",
          "value": "Cannot read property 'map' of undefined",
          "filename": "components/Dashboard.jsx",
          "function": "render"
        },
        "numComments": 2,
        "userCount": 147,
        "count": "1243",
        "firstSeen": "2026-04-10T08:23:11.000Z",
        "lastSeen": "2026-05-02T14:55:00.000Z",
        "assignedTo": null,
        "tags": [
          {"key": "browser", "name": "Chrome 124", "totalValues": 980},
          {"key": "os", "name": "macOS", "totalValues": 650}
        ],
        "priority": "high",
        "isBookmarked": false
      }
    ]
  }
}