Retrieve team members
This endpoint allows you to obtain detailed information about team member
This endpoint allows you to obtain detailed information about team members, which can be useful for various integration purposes and team management within the Beenia Application through an integration platform.
Request
- Method: GET
- Path: /external/v0/zapier/webhooks/teams/{teamId}/members
- Header:
- X-KEY: API key for authentication.
- Path variables:
- teamId(number): Unique team identifier.
Response
After successfully retrieving tag objects, you will receive response in JSON format:
[
{
"description": null,
"teamRole": null,
"teamRoleDesc": null,
"role": "LEADER",
"id": 1345650,
"teamId": 20485500,
"fullName": "Black William"
},
...
]
Description of attributes:
- description: Description of the team member.
- teamRole: Team role.
- teamRoleDesc: Description of the team role.
- role: Member's role in the team.
- id: Unique identifier of the team member.
- teamId: Identifier of the team to which this member belongs.
- fullName: Full name of the team member.