Log into the account using refresh token

Returns an access token and the refresh token.

POST/v3/accounts/login-refresh-token

Parameters

NameTypeInDescription
user-Agentstringheader

Request Body Schema

PropertyTypeDescriptionConstraints
refreshToken*stringRefresh token.min: 1, max: 256

Request Example

{
  "refreshToken": "string"
}

Responses

200 OK
{
  "accessToken": "string",
  "refreshToken": "string"
}