---
title: "Refresh JWT access token"
method: POST
path: "/api/v1/auth"
tags: ["Authentication"]
---

# Refresh JWT access token

`POST /api/v1/auth`

Accepts a refresh token and returns a new JWT access token if the refresh token is valid.

## Request body

- TokenModelDto — Model for refresh token request
  - `refreshToken` string, required — Refresh token used to obtain a new access token

## Response `200`

OK

- TokenResponseModel — Model for the response containing the JWT token
  - `jwtToken` string, required — JWT token that is generated after successful authentication

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

---

[API](https://skmtc.dev/cubee/apis/partner-api.md) · [All operations](https://skmtc.dev/cubee/apis/partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cubee/partner-api/revisions/d5db975189bb/schema)
