Decode
Decode a JSON Web Token without first verifying the signature.
Unless otherwise indicated, field types are text.
Required fields are indicated by a red asterisk.
Input
- token: complete JWT, including the Base64 encoded header and payload, in addition to the signature
Output
-
header: includes both the algorithm (alg) that's used to process the data contained in the JWT and the type (typ) of token, usually JWT. Example:
{ "typ":"JWT", "alg":"HS256" }
-
payload: extensible outputs allow you to manually add a new output field for each key that you expect to be delivered with the payload; these outputs can then be dragged to other inputs in the Flow to process the data.