ISPO SDK
    Preparing search index...

    Interface ConnectorExecuteInput

    Markdown

    Provider-neutral connector invocation carried by connectors.execute.

    providerId and operationId are inert catalog selectors. Main resolves both against an installed, host-owned connector pack before applying the operation's schema and authority rules. accountId selects one already connected account; omitting it lets the host apply its deterministic account selection rule. The caller never supplies a URL, OAuth scope, or credential.

    interface ConnectorExecuteInput {
        accountId?: string;
        idempotencyKey?: string;
        input: ProjectCommandJsonValue;
        operationId: string;
        providerId: string;
    }
    Index
    accountId?: string
    idempotencyKey?: string
    operationId: string
    providerId: string