Send Media Message via WhatsApp Instance
POST
https://api.zaply.dev/v1/instance/{{INSTANCE_ID}}/message/send/media
base64
encoded media string or a media_url
to specify the media to be sent. Only one of these two fields is required, not both.Request Parameters
instance_id
(string) - The unique identifier of the WhatsApp instance. Replace 61d747a3
with your actual instance ID.Headers
Authorization
(string, required) - Bearer token for authentication. Replace {{ZAPLY_AUTH_TOKEN}}
with your API token.Content-Type
(string, required) - Specifies that the request body is in JSON format. Use application/json
.Request Body
number
(string, required) - The phone number of the recipient, including the country code."918367875645"
media_caption
(string, optional) - Caption text to be included with the media file."Check out this image!"
media_name
(string, required) - The file name of the media being sent."Filename.png"
base64
(string, optional) - Base64 encoded string of the media file. If provided, media_url
is not required."data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA..."
media_url
(string, optional) - Direct URL to the media file. If provided, base64
is not required."https://example.com/images/sample.png"
base64
or media_url
is required. If both are provided, base64
takes precedence.Error Codes
400 Bad Request
- Invalid input parameters (e.g., missing required fields).401 Unauthorized
- Invalid or missing Authorization
token.404 Not Found
- Instance ID does not exist.500 Internal Server Error
- Server encountered an unexpected condition.Request
Header Params
Authorization
string
required
Example:
Bearer {{ZAPLY_AUTH_TOKEN}}
Body Params application/json
Request samples
Responses
Modified at 2024-10-15 07:02:22