JWT token
JSON Web Token (JWT) are used as access token for private instances and admin endpoints. Token decode as follows.
{
alg: "HS256",
typ: "JWT"
}.
{
email: "dennis.bauszus@geolytix.co.uk",
access: "admin",
iat: 1542035244,
exp: 1542035364
}.
[signature]
The signature is created with the SECRET defined in the environment settings. The email field is used to lookup a user account in the ACL and determine its access level.
Last updated