JSON Web Token (JWT) is a JSON encoded representation of a claim(s) that can be transferred between two parties . The claim is digitally signed by the issuer of the token, and the party receiving this token can later use this digital signature to prove the ownership on the claim.
Read moreWhere do I put JWT token in Postman?
The token is a text string, included in the request header. In the request Authorization tab, select Bearer Token from the Type dropdown list . In the Token field, enter your API key value. For added security, store it in a variable and reference the variable by name.
Read more