A Signing Session connects a caller to a role within an envelope, and can be used only for calls related to signing that envelope.

interface ISigningSession {
    access_key: {
        id: string;
        type: string;
    };
    aud: string;
    email: string;
    envelope_id: string;
    exp: number;
    iat: number;
    iss: string;
    profile_id: string;
    role: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

access_key: {
    id: string;
    type: string;
}

Type declaration

  • id: string
  • type: string
aud: string
email: string
envelope_id: string
exp: number
iat: number
iss: string
profile_id: string
role: string