Read a JWT - JSON Web Key (JWK)
Read and decode the encoded token using the public key or keypair related to the generated JSON Web Key used for token generation.
To verify the signature of the generated token, the public key (or keypair) related to the private one (when generating the JWK) is necessary. 
Read a JWT - JSON Web Key (JWK)
1. Configure all necessary parameters
Encoded token
Verify Signature ?
Verify Lifetime ?
Verify Issuer ?
Verify Audience ?
2. Configure the ReadTokenService action
Create a read action (tipically a screen action) to handle the JWT reading and decoding. 
Open the read action (ReadToken) created previously and drag the following action:  
Fill action parameters, with the parameters configured in the previous step.
3. Trigger the read action to decode the token
The ReadTokenService action returns the following parameters:
PlainToken: The decoded token information in JSON format
TokenPayloadRec: All Payload data of decoded token.
TokenHeaderRec: All Header data of decoded token.
ValidToken: Defines if the decoded token is a valid one. 
ResultMessage: If validation fails, an output message is sent. 
Decoded token
No decoded token...
Click here to see your activities