Send Button API

POST GET
Endpoint
{{ url('/') }}/send-button
Request Parameters
Parameter Type Required Description
api_key string Yes API Key
sender string Yes Number of your device
number string Yes Recipient number (e.g., 72888xxxx|62888xxxx)
message string Yes Text of message
button array Yes Button array (max 5)
footer string No The footer text of message
url string No Image or video URL
Try It Out
Response

                    
Example JSON Request
                
{
    "sender": "6281284838163",
    "api_key": "yourapikey",
    "number": "082298859671",
    "url": null,
    "footer": "optional",
    "message": "Halo, ini pesan button",
    "button": ["button 1", "button 2", "button 3"]
}
                
            
Example URL
                
{{ url('/') }}/send-button?sender=6281284838163&api_key=yourapikey&number=082298859671&url=&footer=optional&message=Halo,ini pesan button&button=button 1,button 2,button 3