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
Key | Datatype | Required | Description |
---|---|---|---|
applicationId | string | The Application Id for which you are requesting a new access token be issued. | |
refreshToken | string | An 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
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"refreshToken":"\u003cstring\u003e","token":"\u003cstring\u003e"}