{"status":false,"code":400,"message":"Bad Request","error": {"Send Image": ["Malformed or missing phone id or content data!" ] }}
curl-XPOSThttps://api.wapim.io/api/v1/whatsapp/message/image-H'Token: YOUR_WAPIM_TOKEN'-d'{"phone_number": "PHONENUMBER_OR_GROUPID", "content": "https://raw.githubusercontent.com/Wapim/wapim-docs/master/.gitbook/assets/wapim-api-key.jpg", "caption": "this is a caption"}'
constaxios=require('axios');axios.post('https://api.wapim.io/api/v1/whatsapp/message/image', { phone_number:'PHONENUMBER_OR_GROUPID', content:'https://raw.githubusercontent.com/Wapim/wapim-docs/master/.gitbook/assets/wapim-api-key.jpg', caption:'This is a caption' }, { headers: { token:'YOUR_WAPIM_TOKEN', } } ).then(response =>console.log(response.data)).catch(error =>console.log(error.response.data))