Member Junction
    Preparing search index...

    OAuth2 client-credentials connection config for Cvent, parsed from the attached MJ Credential (preferred) or the CompanyIntegration.Configuration JSON. Field names are read case-insensitively. None of these values are read at build time — they are resolved from the bound credential at runtime.

    interface CventConnectionConfig {
        BaseURL?: string;
        ClientId: string;
        ClientSecret: string;
        MaxRetries?: number;
        RequestTimeoutMs?: number;
        Scope?: string;
        TokenURL?: string;
    }
    Index

    Properties

    BaseURL?: string

    Optional REST base host override (e.g. the EUR host). Defaults to the US platform host.

    ClientId: string

    OAuth2 client identifier (Cvent API application key).

    ClientSecret: string

    OAuth2 client secret (Cvent API application secret).

    MaxRetries?: number

    Maximum retries for rate-limited / transient failures. Default 4.

    RequestTimeoutMs?: number

    HTTP request timeout in ms. Default 30000.

    Scope?: string

    Optional space-delimited OAuth2 scopes ({domain}/{resource}:{action}).

    TokenURL?: string

    Optional token-endpoint override; defaults to the documented Cvent token URL.