CDP SDK TypeScript - v1.25.0
    Preparing search index...

    Interface AuthInterceptorOptions

    interface AuthInterceptorOptions {
        apiKeyId: string;
        apiKeySecret: string;
        walletSecret?: string;
        source?: string;
        sourceVersion?: string;
        expiresIn?: number;
        debug?: boolean;
    }
    Index

    Properties

    apiKeyId: string

    The API key ID

    Examples: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' 'organizations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/apiKeys/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'

    apiKeySecret: string

    The API key secret

    Examples: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx==' (Edwards key (Ed25519)) '-----BEGIN EC PRIVATE KEY-----\n...\n...\n...==\n-----END EC PRIVATE KEY-----\n' (EC key (ES256))

    walletSecret?: string

    The Wallet Secret

    source?: string

    The source of the request

    sourceVersion?: string

    The version of the source of the request

    expiresIn?: number

    Optional expiration time in seconds (defaults to 120)

    debug?: boolean

    Whether to log request/response details