# FieldAgentRefreshTokenResponse

Model ID: `fieldagent.RefreshTokenResponse`

Response for POST /auth/refresh.

Type: `object`

## Fields

| Field | Type | Required | Format | Allowed values | Default | Nullable | Description |
|---|---|---:|---|---|---|---:|---|
| `access_token` | `string` | Yes |  |  |  | No | New Cognito access token. |
| `expires_in` | `integer` | Yes |  |  |  | No | Access token lifetime in seconds. |
| `id_token` | `string|null` | No |  |  |  | Yes | New Cognito ID token, when issued. |
| `refresh_token` | `string|null` | No |  |  |  | Yes | Rotated refresh token, when Cognito returns one. |
| `token_type` | `string` | No |  |  | `"Bearer"` | No | OAuth token type returned by Cognito. |

## Example

None declared in canonical OpenAPI.
