Skip to main content
Module

x/grammy/core/api.ts>Api#sendDocument

The Telegram Bot Framework.
Very Popular
Go to Latest
method Api.prototype.sendDocument
import { Api } from "https://deno.land/x/grammy@v1.11.1/core/api.ts";

Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future.

Parameters

chat_id: number | string

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

document: InputFile | string

File to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data.

optional
other: Other<R, "sendDocument", "chat_id" | "document">

Optional remaining parameters, confer the official reference below

optional
signal: AbortSignal

Optional AbortSignal to cancel the request

Official reference: https://core.telegram.org/bots/api#senddocument