---
title: "Refresh access token"
method: POST
path: "/v1/authentication/refresh-token"
tags: ["Authentication Controller"]
---

# Refresh access token

`POST /v1/authentication/refresh-token`

Generates a new access token using a valid refresh token. The refresh token must not be expired.

## Request body

- TokenBean
  - `authToken` string
  - `refreshToken` string
  - `userId` string
  - `platformType` string

## Response `200`

New token generated successfully

- TokenBean
  - `authToken` string
  - `refreshToken` string
  - `userId` string
  - `platformType` string

## Other responses

- `400` — Invalid refresh token
- `401` — Unauthorized
- `500` — Internal server error

---

[API](https://skmtc.dev/floik/apis/floik-authentication-server.md) · [All operations](https://skmtc.dev/floik/apis/floik-authentication-server/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/floik/floik-authentication-server/revisions/2b2a5dad2f5e/schema)
