connectwise-rest
    Preparing search index...

    Interface CWMOptions

    interface CWMOptions {
        apiVersion?: string;
        clientId: string;
        companyId: string;
        companyUrl: string;
        debug?: boolean;
        entryPoint?: string;
        logger?: CWLogger;
        privateKey: string;
        publicKey: string;
        retry?: boolean;
        retryOptions?: RetryOptions;
        timeout?: number;
    }
    Index

    Properties

    apiVersion?: string

    Api version, defaults to 2021.1

    clientId: string

    Request a client ID from developer.connectwise.com

    companyId: string

    Your CW Manage Company ID

    companyUrl: string

    Your CW Manage instance URI, e.g. my.domain.com

    debug?: boolean

    Enable debug output. Defaults to false.

    entryPoint?: string

    Defaults to 'v4_6_release'

    logger?: CWLogger

    Pass in a custom logger function, otherwise the default will be used.

    privateKey: string

    api private key

    publicKey: string

    api public key

    retry?: boolean

    Enable automatic retry. Defaults to false.

    retryOptions?: RetryOptions

    RetryOptions type

    timeout?: number

    Default timeout in milliseconds