Skip to main content
GET
/
combined-data
/
git-api
/
orgMembers
/
forTeam
/
:teamDataId
Get Organization Members for Team
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/git-api/orgMembers/forTeam/:teamDataId \
  --header 'bearer: <api-key>'
{
  "organizationMembers": [
    {}
  ],
  "organizationMembers[].id": "<string>",
  "organizationMembers[].login": "<string>",
  "organizationMembers[].name": "<string>",
  "organizationMembers[].email": "<string>",
  "organizationMembers[].avatar_url": "<string>",
  "organizationMembers[].role": "<string>",
  "organizationMembers[].permissions": {},
  "organizationMembers[].created_at": "<string>",
  "organizationMembers[].updated_at": "<string>",
  "organizationInfo": {},
  "organizationInfo.name": "<string>",
  "organizationInfo.login": "<string>",
  "organizationInfo.memberCount": 123
}
Retrieve organization members data for a specific team.
organizationMembers
array
Array of organization member objects.
organizationMembers[].id
string
The unique identifier of the organization member.
organizationMembers[].login
string
The GitHub username of the member.
organizationMembers[].name
string
The display name of the member.
organizationMembers[].email
string
The email address of the member.
organizationMembers[].avatar_url
string
The URL of the member’s avatar.
organizationMembers[].role
string
The role of the member in the organization.
organizationMembers[].permissions
object
The permissions of the member in the organization.
organizationMembers[].created_at
string
The timestamp when the member joined the organization.
organizationMembers[].updated_at
string
The timestamp when the member’s information was last updated.
organizationInfo
object
Information about the organization.
organizationInfo.name
string
The name of the organization.
organizationInfo.login
string
The GitHub username of the organization.
organizationInfo.memberCount
number
The total number of members in the organization.