> ## 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.

# Current

### GET /locations/:location\_id/current/stats

This endpoint retrieves current stats for a specific location.

#### Parameters

* location\_id (required): The ID of the location for which stats are to be retrieved.
* balance\_type (optional): Which account balances to include. "positive" returns only debit balances, "negative" returns only credit balances, "all" returns both. Defaults to "all".

#### Response

* Content-Type: application/json

```json theme={null}
{
    "reactivation": {
        "total": "number",
        "had_hygiene": "number",
        "never_had_hygiene": "number",
        "eligible": "number",
        "eligible_hygiene": "number",
        "active_call_cycle": "number",
        "attempts_mtd": "number",
        "attended_mtd": "number"
    },
    "accounts_receivable": [
        {
            "category": "string",
            "number_of_patients": "number",
            "total_balance": "string",
            "average_balance": "number"
        },
        {
            "category": "string",
            "number_of_patients": "number",
            "total_balance": "string",
            "average_balance": "number"
        },
        {
            "category": "string",
            "number_of_patients": "number",
            "total_balance": "string",
            "average_balance": "number"
        },
        {
            "category": "string",
            "number_of_patients": "number",
            "total_balance": "string",
            "average_balance": "number"
        }
    ],
    "average_production_per_patient": {
        "per_patient_value": "float",
        "production": "float",
        "hygiene_visits": "float"
    }
}
```
