---
title: "Refresh token"
description: "Force an OAuth token refresh for a connected account."
section: "API reference"
url: https://dravo.dev/docs/api/accounts/refresh
---
# Refresh token

Force an OAuth token refresh. If the refresh fails, the account likely needs to
be reconnected.

#### `POST /v1/accounts/{account_id}/refresh`

Force an OAuth token refresh for an account.

**Auth:** API key (`dra_…`) or dashboard JWT

| Field | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `account_id` | path | string | yes | Account to refresh. |

Response `200`: Refreshed.

```json
{
  "id": "acc_8f2c1d",
  "health": "active",
  "token_expires_at": "2026-09-01T00:00:00Z"
}
```

Errors:

- `409`: Refresh failed; account may need to reconnect.
