RefreshTokenTokenRequest
Refresh Token
Token Request is a mechanism by which a client can obtain a new access token by presenting a refresh token to the authorization server, extending the validity of the authorization without requiring the user's interaction.
refresh_tokenstringrequired
The refresh_token
previously provided to the client.
Example:
eyJhbGciOiJIUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICI3MDAzNjUwZC01NGJkLTRiNjEtOGZjNC02YzVjZjRlOWI3YjcifQ...
scopestring
The scope of the requested access token. Can be used to restrict the new access token to a subset of the scope allowed to the client and token type.
Example:
whitelabelWallet
RefreshTokenTokenRequest
{
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICI3MDAzNjUwZC01NGJkLTRiNjEtOGZjNC02YzVjZjRlOWI3YjcifQ...",
"scope": "whitelabelWallet"
}