# GET /tournaments/:id/group/:groupId/entries

This endpoint retrieves all entries for a specific group in the tournament.  Whether they are individual players or teams, depends on each disciplines entry type.

## Parameters

| Parameter | In | Example |
| --- | --- | --- |
| `id` | path | `tio:T5MMiW8IVuWMp` |
| `groupId` | path | `tio:N2qVwj1OZyQXK` |

## Responses

```json
[
  {
    "id": "05-9012_05-9876",
    "name": "Caroline Conrad / Andrei Andros",
    "entries": [
      {
         "id": "05-9012",
         "name": "Caroline Conrad"
      },
      {
         "id": "05-9876",
         "name": "Andrei Andros",
      }
    ]
  },
  {
    "id": "05-2553_05-4357",
    "name": "Helmut Poppen / Sophia Poppen".
    "entries": [
      {
        "id": "05-2553_05-4357",
        "name": "Helmut Poppen / Sophia Poppen",
      },
      {
        "id": "05-9012_05-9876",
        "name": "Caroline Conrad / Andrei Andros",
      }
    ]
  },
  ...
]
```