nylas
    Preparing search index...

    Interface TokenInfoResponse

    Interface representing a Nylas token information response.

    interface TokenInfoResponse {
        aud: string;
        email?: string;
        exp: number;
        iat: number;
        iss: string;
        sub?: string;
    }
    Index

    Properties

    Properties

    aud: string

    The token's audience.

    email?: string

    The email address of the Grant belonging to the user's token.

    exp: number

    The time that the token expires.

    iat: number

    The time that the token was issued.

    iss: string

    The issuer of the token.

    sub?: string

    The token's subject.