teammembers
Last updated
This endpoint retrieves the members of specified teams.
Content-Type
application/json
The content type of the request body.
X-Auth-Token
string
The authentication token of the requesting user.
X-User-Id
string
The ID of the requesting user.
{
"teamIDs": ["team1ID", "team2ID"]
}teamIDs
array
Array of team IDs to get members for.
{
"body": {
"status": "success",
"message": "Team members attached",
"teamMembers": ["user1ID", "user2ID"]
}
}Last updated
{
"body": {
"status": "error",
"message": "Null team IDs"
}
}