> ## Documentation Index
> Fetch the complete documentation index at: https://docs.teamcaredental.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create

This handles authentication for consulting firm clients and returns a token to be used for accessing protected resources.

### POST /auth/token

`client_id` and `client_secret` are required to uniquely identify the consulting firm during authentication.

#### Request Body

* Content-Type: application/json

```json theme={null}
{
    "client_id": "{{client_id}}",
    "client_secret": "{{client_secret}}"
}
```
