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
  • Accept
    Type: string
    required

    Advertises which content types the client is able to understand

  • Content-Type
    Type: string
    required

    Set this header to application/json

  • User-Agent
    Type: string
    required

    For details, see User Agent.

Body
application/json
  • client
    Type: string
    required

    OAuth client ID provided by the business

  • refresh_token
    Type: string
    required

    Refresh token that the client application can use to get new tokens without re-authenticating. You can retrieve the value of the refresh_token from the response of the Verify Token.

Responses
  • 200
    Type: object
    • data
      Type: token
  • 400
    Type: object
    • errors
      Type: object
  • 403
    Type: object
    • errors
      Type: array string[]
  • 412
    Type: object
    • errors
      Type: object
  • 503
    Type: object
    • errors
      Type: object
post/api2/password_less/refresh_token
{
  "data": {
    "access_token": "string",
    "refresh_token": "string",
    "id_token": "string",
    "expires_in": 1,
    "token_type": "string"
  }
}