List Org Members
List all users who are members of an organization. If the authenticated user is also a member of this organization then both concealed and public members will be returned.
External Documentation
To learn more, visit the GitHub documentation.
Basic Parameters
Parameter | Description |
---|---|
Org | The name of the organization. |
Page | Page number of the results to fetch. |
Per Page | The number of results per page (max 100). |
Return All Pages | Automatically fetch all resources, page by page. |
Role | Filter members returned by their role. |
Advanced Parameters
Parameter | Description |
---|---|
Filter | Filter members returned in the list. 2fa_disabled means that only members without two-factor authentication enabled will be returned. This option is only available for organization owners. |
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",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"repos_url": "https://api.github.com/users/octocat/repos",
"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 Org Members with Github and Send Results Via Email
Preview this Workflow on desktop