| name | List public events received by a user |
|---|---|
| example | octokit.rest.activity.listReceivedPublicEventsForUser({ username }) |
| route | GET /users/{username}/received_events/public |
| scope | activity |
| type | API method |
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.
octokit.rest.activity.listReceivedPublicEventsForUser({
username,
});| name | required | description |
|---|---|---|
| username | yes |
The handle for the GitHub user account. |
| per_page | no |
The number of results per page (max 100). For more information, see "Using pagination in the REST API." |
| page | no |
The page number of the results to fetch. For more information, see "Using pagination in the REST API." |
See also: GitHub Developer Guide documentation.