Tela SDK for JavaScript
    Preparing search index...

    Interface TelaSDKOptions

    Configuration options for the TelaSDK.

    interface TelaSDKOptions {
        apiKey?: string;
        baseURL?: string;
        dataToken?: string;
        jwt?: string;
        maxRetries?: number;
        timeout?: number;
    }

    Hierarchy

    Index

    Properties

    apiKey?: string

    The API key for authentication. Required if jwt is not provided.

    baseURL?: string

    The base URL for the Tela API. Defaults to 'https://api.tela.com'.

    dataToken?: string

    The data token for authentication. When provided, sends x-data-token header. Required if apiKey or jwt is not provided.

    jwt?: string

    The JWT token for authentication. Required if apiKey is not provided.

    maxRetries?: number
    timeout?: number