v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Team

Get Team Members

Retrieves all members of a specific team. The response includes user details and their roles within the team.

get/teams/{id}/members

Path parameters

idstring required

Unique identifier of the team (UUID format)

Response

Team members successfully retrieved

Example response

{
  "data": [
    {
      "teamUUID": "team-uuid-123",
      "userUUID": "user-uuid-456",
      "team": {
        "uuid": "team-uuid-123",
        "name": "Sales Team"
      },
      "user": {
        "uuid": "user-uuid-456",
        "firstName": "Jane",
        "lastName": "Smith",
        "email": "jane@example.com"
      }
    }
  ],
  "meta": {
    "totalRecords": 1
  }
}