The return hash contains a role field which refers to the Organization Invitation role and will be one of the following values: direct_member, admin, billing_manager, hiring_manager, or reinstate. If the invitee is not a GitHub member, the login field in the return hash will be null.
External DocumentationTo learn more, visit the GitHub documentation.

Parameters

ParameterDescription
OrgThe name of the organization.
PagePage number of the results to fetch.
Per PageThe number of results per page (max 100).
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{
	"value": [
		{
			"created_at": "2016-11-30T06:46:10-08:00",
			"email": "octocat@github.com",
			"failed_at": "",
			"failed_reason": "",
			"id": 1,
			"invitation_teams_url": "https://api.github.com/organizations/2/invitations/1/teams",
			"inviter": {
				"avatar_url": "https://github.com/images/error/other_user_happy.gif",
				"events_url": "https://api.github.com/users/other_user/events{/privacy}",
				"followers_url": "https://api.github.com/users/other_user/followers",
				"following_url": "https://api.github.com/users/other_user/following{/other_user}",
				"gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
				"gravatar_id": "",
				"html_url": "https://github.com/other_user",
				"id": 1,
				"login": "other_user",
				"node_id": "MDQ6VXNlcjE=",
				"organizations_url": "https://api.github.com/users/other_user/orgs",
				"received_events_url": "https://api.github.com/users/other_user/received_events",
				"repos_url": "https://api.github.com/users/other_user/repos",
				"site_admin": false,
				"starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
				"subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
				"type": "User",
				"url": "https://api.github.com/users/other_user"
			},
			"login": "monalisa",
			"node_id": "MDQ6VXNlcjE=",
			"role": "direct_member",
			"team_count": 2
		}
	]
}

Workflow Library Example

List Pending Invitations with Github and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop