Media
When the user sends a message with media (image, document, audio, video, or a sticker), the WhatsApp Business API client will download the media. Once the media downloads, our platform sends the event's notification to your Webhook. It contains information for identifying the media object and enables you to download the media file.
Common payload object description
Key | Description | Example |
---|---|---|
caption | Optional The provided caption for the media is only present if specified. | Purchase receipt |
name | Media file's name as received from the user | file1.pdf |
url | You can use this link to download the media file sent by the user. | https://filemanager.gupshup.io/fm/wamedia/Jeet20/68f1e51b-ac53-4dfb-b970-7b23431ed1d3c |
content-type | MIME type of the media file | application/pdf |
urlExpiry | The timestamp for the expiry of the media download url | 1624957005482 |
Different payloads for different types of inbound media messages
{
"app": "docdeck",
"timestamp": 1718003620228,
"version": 2,
"type": "message",
"payload": {
"id": "ABEGkZUTIXZ0Ago69N5XB9zTUbl-",
"source": "919XXXXX4",
"type": "image",
"payload": {
"caption": "Sample image",
"url": "https://filemanager.gupshup.io/wa/23038a99-929b-408b-80eb-4d30cebb93d4/wa/media/2f997fea-9696-46c4-a2e5-8667fd27988d?download=false",
"contentType": "image/jpeg",
"urlExpiry": 1718608420228
},
"sender": {
"phone": "919XXXXXXXX4",
"name": "SJ",
"country_code": "91",
"dial_code": "9XXXXXXX4"
}
}
}
{
"app": "docdeck",
"timestamp": 1718003880179,
"version": 2,
"type": "message",
"payload": {
"id": "ABEGkZUTIXZ0Ago6nbYEmVczNV4w",
"source": "91XXXXX4",
"type": "audio",
"payload": {
"url": "https://filemanager.gupshup.io/wa/23038a99-929b-408b-80eb-4d30cebb93d4/wa/media/60830ca4-c005-420a-9574-50a50c9a7736?download=false",
"contentType": "audio/ogg; codecs=opus",
"urlExpiry": 1718608680179
},
"sender": {
"phone": "919XXXXX4",
"name": "SJ",
"country_code": "91",
"dial_code": "9XXXXX4"
}
}
}
{
"app": "docdeck",
"timestamp": 1718004022842,
"version": 2,
"type": "message",
"payload": {
"id": "ABEGkZUTIXZ0Ago6tuN0fAfOdlgC",
"source": "91XXXXX4",
"type": "video",
"payload": {
"url": "https://filemanager.gupshup.io/wa/23038a99-929b-408b-80eb-4d30cebb93d4/wa/media/f272da13-c601-457c-b8a0-d997536f9d2e?download=false",
"contentType": "video/mp4",
"urlExpiry": 1718608822842
},
"sender": {
"phone": "91XXXXX4",
"name": "SJ",
"country_code": "91",
"dial_code": "9XXXXX4"
}
}
}
{
"app": "docdeck",
"timestamp": 1718004253390,
"version": 2,
"type": "message",
"payload": {
"id": "ABEGkZUTIXZ0Ago6VPYl8mM5nl8R",
"source": "91XXXXX4",
"type": "file",
"payload": {
"caption": "Document caption",
"name": "IMG_0068.PNG",
"url": "https://filemanager.gupshup.io/wa/23038a99-929b-408b-80eb-4d30cebb93d4/wa/media/f716a5c0-712d-4462-bcb6-bae95368f8a3?download=false&fileName=IMG_0068.PNG",
"contentType": "image/png",
"urlExpiry": 1718609053390
},
"sender": {
"phone": "91XXXXX4",
"name": "SJ",
"country_code": "91",
"dial_code": "9XXXXX74"
}
}
}
{
"app": "docdeck",
"timestamp": 1718004338015,
"version": 2,
"type": "message",
"payload": {
"id": "ABEGkZUTIXZ0Ago6P5sn-0FtPEJq",
"source": "91XXXXX4",
"type": "sticker",
"payload": {
"url": "https://filemanager.gupshup.io/wa/23038a99-929b-408b-80eb-4d30cebb93d4/wa/media/2e1d1147-272f-4e16-8c2a-1d8066b091d1?download=false",
"contentType": "image/webp",
"urlExpiry": 1718609138015
},
"sender": {
"phone": "91XXXXX4",
"name": "SJ",
"country_code": "91",
"dial_code": "9XXXXX4"
}
}
}
Updated 5 months ago