D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
wabot.whatzi.online
/
resources
/
views
/
pages
/
api-docs
/
Filename :
examplewebhook.blade.php
back
Copy
<div class="tab-pane fade " id="examplewebhook" role="tabpanel"> <h3>Webhook Example</h3> <p>Webhook is a feature that allows you to receive a callback from our server when a message is incoming to your device. You can use this feature for made a dinamic chatbot or whatever you want. </p> <p>We will send a POST request to your webhook url with a JSON body. Here is an example of the JSON body we will send:</p> <pre class="bg-dark text-white"> <code class="json"> { "device" : "your sender/device" "message" : "message", "from" : "the number of the whatsapp sender", "name" : "the name of the sender", "participant" : "sender number if group", "ppUrl" : "url profile picture sender", "media" : [ "caption" : "caption, equal to message", "fileName" : "xxxx.xx", "stream" : [ "type" : "Buffer", "data" : "xxxx" ] ], "mimetype" : "image\/jpeg" // depends to media type, could be image,document,audio etc ] // null if no media } </code> </pre> <br> <p>For example webhook you can see in <a href="https://github.com/Ilmans/webhook-wamp-example.git" target="_blank"> <span class="badge bg-primary">Here</span></a></p> </div>