nizarfadlan / baileys-api

Simple WhatsApp REST API with multiple device support
MIT License
66 stars 32 forks source link

How do I send a pdf file ? #11

Closed Lenz60 closed 1 week ago

Lenz60 commented 3 weeks ago

How do I attach pdf file to the chat message instead of its link ?

Fajar-G commented 3 weeks ago

try this

{
    "jid": "xxxxxxxxxxx@s.whatsapp.net",
    "type": "number",
    "message": {
        "document": { 
            "url": "https://example.com/file.pdf" 
        }, 
        "mimetype": "application/pdf",
        "caption": "bla bla bla"
    }
}
Lenz60 commented 3 weeks ago

try this

{
    "jid": "xxxxxxxxxxx@s.whatsapp.net",
    "type": "number",
    "message": {
        "document": { 
            "url": "https://example.com/file.pdf" 
        }, 
        "mimetype": "application/pdf",
        "caption": "bla bla bla"
    }
}

Great!, its working, Thankss