How to create Live Chat button using REST API
You can add live chat button (https://www.liveagent.com/features/real-time-chat/) via PHP and LiveAgent REST API:
<?php $ch = curl_init(); $curl_post_data = array( /* These are mandatory params */ 'name' => 'MyButton4', 'provide' => 'BFC', 'departmentid' => 'dep1', 'rtype' => 'C', 'usecode' => 'N', 'status' => 'A', 'apikey' => '<YOUR_API_KEY>', /* ...and these are optional */ 'contactwidgetid' => '', 'kb_id' => 'kb1', 'description' => 'desc', 'language' =...