# Team roles

## List team roles

This endpoint makes an HTTP GET request to retrieve a list of team roles.

**Request Body** This request does not require a request body.

### Request

* Endpoint: `https://api.thebrief.ai/v1/teamRoles`

### Response

* Status: 200
* Content-Type: application/json

The response will contain an array of team roles, where each role is represented by an object with "id" and "name" properties.

Example response:

```
{
    "response": [
        {   
            "id": 1,
            "name": "Admin"
        },
        {
            "id": 2,
            "name": "Viewer"
        }
    ]
}
```
