Skip to main content

Auth Token Exchange

This endpoint can be used to request a new access token using a refresh token.

Header Parameters
  • origin string required

    Origin header to specify the origin of the request.

Request Body required
  • refreshToken string required

    JWT that is used to request a new access token. (Valid for 30 days.)

  • clientApplicationId string required

    Id of the client application.

Responses

successful operation


Schema
  • accessToken string

    The new access token that will be used for subsequent authenticated requests. This token replaces the previous access token that has expired or is about to expire.

  • refreshToken string

    The new refresh token to request a new access token.

Loading...