WhatsApp.messages.document()
Send an existing self-hosted or Meta hosted document. Supported document formats:
- TXT
- PPT or PPTX
- DOC or DOCX
- XLS or XLSX
- ODF or FODT
- ODP or FODP
- ODS or FODS
Example:
Send a Meta-hosted message and then send an externally hosted document to the phone number 12345678901
.
import WhatsApp from 'whatsapp';
const senderNumber = 12345678901234567890;
const wa = new WhatsApp( senderNumber );
const meta_hosted_document =
{
"id" : "123456abcde",
"caption" : "My important document",
"filename" : "example.pdf"
};
const self_hosted_document =
{
"link" : new URL( "https://example.com/example_1234.pdf" ).href,
"caption" : "My important document",
"filename" : "example.pdf"
};
await wa.messages.document( meta_hosted_document, 12345678901 );
wa.messages.document( self_hosted_document, 12345678901 );
Arguments
body
: DocumentMediaObject — the object describing the document to send.recipient
: number — the recipient's phone number with country code.replyMessageId
: string (optional) — the received WhatsApp message Id to reply back to.
Returns
Promise — Server response object on success.