Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.31 KB

File metadata and controls

49 lines (37 loc) · 1.31 KB
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

List public events received by a user

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,
});

Parameters

name required description
usernameyes

The handle for the GitHub user account.

per_pageno

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

pageno

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

See also: GitHub Developer Guide documentation.