# Retrieve Tax Group

`GET /lokta-lms/api/v1/taxes/group/{taxGroupId}`

Retrieve Tax Group

## Parameters
- `taxGroupId` (path, integer, required): taxGroupId

## Responses
- `200`: OK

## Response fields
- `id` (integer)
- `name` (string)
- `taxAssociations` (array of GetTaxesGroupTaxAssociations)

## Example request (cURL)
```bash
curl -X GET \
  'http://localhost:8080/lokta-lms/api/v1/taxes/group/{taxGroupId}' \
  -u '{username}:{password}' \
  -H 'Tenant-Identifier: default'
```

## Example response
```json
{
  "id": 7,
  "name": "tax group 1",
  "taxAssociations": [
    {}
  ]
}
```

Interactive: https://developer.lokta.ai/reference.html#operation/retrieveOneTaxGroup
