Refresh JWT Token
Exchange refresh_token for JWT tokens.
Authorizations
Body
refresh_tokenstringRequired
The refresh_token used to get new JWTs
Responses
200
JWT tokens
application/json
401
Unauthorized
application/json
post
POST /auth/token/refresh HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"refresh_token": "text"
}
{
"access_token": "text",
"expires_in": 300,
"refresh_token": "text",
"session_state": "text",
"token_type": "Bearer"
}