Sentry · Example Payload

Sentry List Organizations Example

Error MonitoringDebuggingObservabilityApplication Performance ManagementDeveloper Tools

Sentry List Organizations 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/",
    "headers": {
      "Authorization": "Bearer sntryu_YOUR_AUTH_TOKEN",
      "Content-Type": "application/json"
    },
    "queryParameters": {
      "member": true
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      {
        "id": "1234567",
        "slug": "my-organization",
        "name": "My Organization",
        "dateCreated": "2022-01-15T10:00:00.000Z",
        "status": {
          "id": "active",
          "name": "active"
        },
        "features": [
          "performance-view",
          "session-replay",
          "profiling"
        ],
        "avatar": {
          "avatarType": "letter_avatar",
          "avatarUuid": null
        },
        "isEarlyAdopter": false,
        "requiresSso": false,
        "plan": "team",
        "planDetails": {
          "name": "Team",
          "maxProjects": 50,
          "maxMembers": 25
        }
      }
    ]
  }
}