Skip to main content
POST
/
auth
/
refresh
Refresh Token
curl --request POST \
  --url https://api.yertle.com/auth/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refreshToken": "<string>"
}
'
{
  "accessToken": "<string>",
  "tokenType": "<string>",
  "expiresIn": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.yertle.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request model for token refresh.

refreshToken
string
required

Refresh token

Response

Successful Response

Response for POST /auth/refresh.

accessToken
string
required

New access token

tokenType
string
required

Token type (e.g. 'Bearer')

expiresIn
integer
required

Access token lifetime in seconds