Interface JwtAccessToken

Decoded JWT access token

interface JwtAccessToken {
    aud: string[];
    exp: number;
    iss: string;
    pid?: string;
    sub: ACCESS;
    uid: string;
}

Hierarchy (View Summary)

Properties

Properties

aud: string[]

Audience. Service shortnames that can use this token

exp: number

Expiration time

iss: string

Issuer. Service shortname that issued this token

'bo'
pid?: string

Parent User ID who logged in as this user

'hcu:2zgetnx5x2h'
sub: ACCESS

Token type

uid: string

User ID

'hcu:1xgetnx5xq3'