Send Video Message

In this page we show you how to send a message containing a video.

A video message refers to a video being included in the message.

The video needs to be in mp4 format and the size cannot be above 15MB.

ArgumentsExplanations

mediaURL *required

Provides the URL where the file content is hosted or located.

text *required

The text content of the message. Maximum length of 4096 characters.

type *required

Description of media type.

Here's how to create a request for sending a video message to a WhatsApp user using the provided API endpoint.

{
    "type": "video",
    "text": "Hello!",
    "mediaUrl": "https://videolink.mp4"
}

Here is the provided YAML configuration below.

Last updated