issue JWT With Id

GET {{baseUrl}}/api/jwt/issue?applicationId=<string>&refreshToken=<string>

Issue a new access token (JWT) for the requested Application after ensuring the provided JWT is valid. A valid access token is properly signed and not expired.

This API may be used in an SSO configuration to issue new tokens for another application after the user has obtained a valid token from authentication.

Request Params

KeyDatatypeRequiredDescription
applicationIdstringThe Application Id for which you are requesting a new access token be issued.
refreshTokenstringAn existing refresh token used to request a refresh token in addition to a JWT in the response. <p>The target application represented by the applicationId request parameter must have refresh tokens enabled in order to receive a refresh token in the response.</p>

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;refreshToken&quot;:&quot;\u003cstring\u003e&quot;,&quot;token&quot;:&quot;\u003cstring\u003e&quot;}