Team members will include the members of child teams.

You must authenticate using an access token with the read:org and repo scopes with push access to use this endpoint. GitHub Apps must have the members organization permission and metadata repository permission to use this endpoint.

To learn more, visit the GitHub documentation.

Parameters

ParameterDescription
AffiliationFilter collaborators returned by their affiliation. outside means all outside collaborators of an organization-owned repository. direct means all collaborators with permissions to an organization-owned repository, regardless of organization membership status. all means all collaborators the authenticated user can see.
OwnerThe account owner of the repository. The name is not case sensitive.
PagePage number of the results to fetch.
Per PageThe number of results per page (max 100).
RepoThe name of the repository. The name is not case sensitive.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{    "value": [        {            "avatar_url": "https://github.com/images/error/octocat_happy.gif",            "events_url": "https://api.github.com/users/octocat/events{/privacy}",            "followers_url": "https://api.github.com/users/octocat/followers",            "following_url": "https://api.github.com/users/octocat/following{/other_user}",            "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",            "gravatar_id": "",            "html_url": "https://github.com/octocat",            "id": 1,            "login": "octocat",            "node_id": "MDQ6VXNlcjE=",            "organizations_url": "https://api.github.com/users/octocat/orgs",            "permissions": {                "admin": false,                "maintain": false,                "pull": true,                "push": true,                "triage": true            },            "received_events_url": "https://api.github.com/users/octocat/received_events",            "repos_url": "https://api.github.com/users/octocat/repos",            "role_name": "write",            "site_admin": false,            "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",            "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",            "type": "User",            "url": "https://api.github.com/users/octocat"        }    ]}

Workflow Library Example

List Collaborators with Github and Send Results Via Email

Preview this Workflow on desktop