post-api-auth-password_less-refresh_token
Refresh Token
Generates a new access token, ID token and refresh token for a user using the refresh token
For more information, see Advanced Authentication.
Headers
- Type: string
Accept requiredAdvertises which content types the client is able to understand
- Type: string
Content - Type requiredSet this header to application/json
- Type: string
User - Agent requiredFor details, see User Agent.
Body
application/json
- Type: string
client requiredOAuth client ID provided by the business
- Type: string
refresh _token requiredRefresh token that the client application can use to get new tokens without re-authenticating. You can retrieve the value of the
refresh_tokenfrom the response of the Verify Token.
Responses
- Type: object
200 - Type: token
data
- Type: object
400 - Type: object
errors
- Type: object
403 - Type: array string[]
errors
- Type: object
412 - Type: object
errors
- Type: object
503 - Type: object
errors
post/api2/password_less/refresh_token
{
"data": {
"access_token": "string",
"refresh_token": "string",
"id_token": "string",
"expires_in": 1,
"token_type": "string"
}
}