AgentOS Extensions API - v1.0.3
    Preparing search index...

    Tool for sending documents via Telegram Bot API

    Implements

    Index

    Constructors

    Properties

    category: "communications" = 'communications'
    description: "Send a document/file to a Telegram chat or user with an optional caption." = 'Send a document/file to a Telegram chat or user with an optional caption.'
    displayName: "Send Telegram Document" = 'Send Telegram Document'
    hasSideEffects: true
    id: "telegramSendDocument" = 'telegramSendDocument'
    inputSchema: {
        properties: {
            caption: { description: string; type: string };
            chatId: { description: string; type: string[] };
            document: { description: string; type: string };
            parseMode: { description: string; enum: string[]; type: string };
        };
        required: string[];
        type: string;
    } = ...
    name: "telegramSendDocument" = 'telegramSendDocument'
    outputSchema: {
        properties: {
            chatId: { type: string[] };
            date: { type: string };
            error: { type: string };
            messageId: { type: string };
            success: { type: string };
        };
        type: string;
    } = ...
    requiredCapabilities: string[] = ...
    version: "1.0.0" = '1.0.0'

    Methods