Skip to main content

Auth Token Exchange

POST 

/auth/token

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

Request

Header Parameters

    origin stringrequired

    Origin header to specify the origin of the request.

Body

required

    refreshToken stringrequired

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

    clientApplicationId stringrequired

    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...