Member Junction
    Preparing search index...

    Neon CRM connection configuration, 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 — resolved from the bound credential at runtime.

    interface NeonCRMConnectionConfig {
        APIKey: string;
        APIVersion: string;
        BaseURL: string;
        MaxRetries: number;
        OrgID: string;
        RequestTimeoutMs: number;
    }
    Index

    Properties

    APIKey: string

    Neon API key — the HTTP Basic password.

    APIVersion: string

    NEON-API-VERSION header value (defaults to 2.11).

    BaseURL: string

    API base URL (defaults to https://api.neoncrm.com/v2).

    MaxRetries: number

    Maximum retries for transient (429/503/network) failures. Default 3.

    OrgID: string

    Neon organization id — the HTTP Basic userid.

    RequestTimeoutMs: number

    HTTP request timeout in ms. Default 30000.