Skip to main content
POST
Refresh access token

Body

application/json

RefreshRequest defines the token refresh request payload

refreshToken
string
required

RefreshToken is the token used to obtain a new access token

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

Response

Token refreshed successfully

TokenResponse defines the authentication response payload

access_token
string

JWT token for authentication

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

expires_in
integer

Number of seconds until the access token expires

Example:

86400

refresh_token
string

Token used to obtain new access tokens

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."