Retrieve an Organization

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

Return details on an individual organization, including various details such as membership access and teams.

Path Parameters

organization_id_or_slug (string)
REQUIRED

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

Query Parameters:

detailed (string)

Specify "0" to return organization details that do not include projects or teams.

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}/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
  "avatar": {
    "avatarType": "letter_avatar",
    "avatarUuid": null
  },
  "dateCreated": "2018-11-06T21:19:55.101Z",
  "hasAuthProvider": false,
  "id": "2",
  "isEarlyAdopter": false,
  "links": {
    "organizationUrl": "https://the-interstellar-jurisdiction.sentry.io",
    "regionUrl": "https://us.sentry.io"
  },
  "name": "The Interstellar Jurisdiction",
  "require2FA": false,
  "slug": "the-interstellar-jurisdiction",
  "status": {
    "id": "active",
    "name": "active"
  }
}