Category: api
Here is the curl call for to get the chats for Zopim online live chat platform. List of Chats Done in zopim $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.zopim.com/api/v2/chats"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, …
Following script will add the contact in to the sendgrid list. $ListId = 'YOUR-LIST-ID'; $reciepent_id = 'YOUR-CONTACT-ID'; $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.sendgrid.com/v3/contactdb/lists/".$ListId."/recipients/".$reciepent_id, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => …
Following curl script will add the contact in your send grid via API. $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.sendgrid.com/v3/contactdb/recipients", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, …
Ready to go curl call to add an email address to your Mailchimp list. Just paste it in your code and it will be ready to use. $apiKey = 'YOUR-API-KEY'; …
Almost every single application no matter it’s a website or mobile application requireS to verify your mobile number by sending some codes. They simply use external branding SMS services to …
Introduction Bitrix24 is a complete business model that widely supports CRM and Business management. Many companies uses their CRM because they fulfills their needs. We can make leads and can …