v56

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-011,21696712.2 MB
activity

List organization events for the authenticated user

This is the user's organization dashboard. You must be authenticated as the user to view this.

[!NOTE] This API is not built to serve real-time use cases. Depending on the time of day, event latency can be anywhere from 30s to 6h.

get/users/{username}/events/orgs/{org}

Path parameters

usernamestring required

The handle for the GitHub user account.

orgstring required

The organization name. The name is not case sensitive.

Query parameters

per_pageinteger

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

pageinteger

The page number of the results to fetch. For more information, see "Using pagination in the REST API."

Response

Response

idstring required
typestring nullable required
publicboolean required
created_atstring date-time nullable required

Example response

[
  {
    "payload": {
      "discussion": {
        "state_reason": "resolved",
        "labels": [
          {
            "id": 208045946,
            "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
            "url": "https://api.github.com/repositories/42/labels/bug",
            "name": "bug",
            "description": "Something isn't working",
            "color": "FFFFFF",
            "default": true
          }
        ]
      }
    }
  }
]