Desideri integrare un'app con CalLite CRM ed eseguire automaticamente determinate azioni? Un modo semplice per farlo è utilizzare le API di CalLite CRM per scambiare dati con Zapier (o altri software, ad esempio: Apache OFBiz, OnlyOffice, SuiteCRM, Vtiger, ecc ecc). Puoi creare facilmente uno Zap con Zapier per connettere la tua app a CalLite CRM.

Ad esempio, puoi ottenere vari scenari:

  • Esempio di scenario in ingressoCalLite riceve e Zapier invia. Puoi creare uno Zap che, quando ricevi un leads da una campagna Facebook, questi generi un contatto su CalLite e schedulare un invia automatico di una Email oppure di un messaggio Whatsapp.
  • Esempio di scenario in uscitaCalLite invia e Zapier riceve. Puoi lavore un contatto con CalLite ed il contatto sarà automaticamente aggiornato sul sistema CRM del tuo Partner oppure puoi mandare in realtime la notifica di un contratto caricato (o di un appuntamento) alla tua rete Vendita.

In Zapier sono disponibili più di 5.000 app, ad esempio:

Fogli Google, Contatti Google, Mailchimp, PayPal, Stripe, Facebook Lead Ads, Gravity Forms, Sumo, Wufoo, Salesmate, Zoho CRM, Salesforce, Pipedrive, Microsoft Dynamics 365 CRM, SugarCRM, Intercom,  ecc, ecc.

Per verificare se la tua app può essere integrata con CalLite CRM, ti suggeriamo di esplorare tutte le app disponibili in Zapier. Per ulteriori informazioni sull'uso di Zapier e sulla creazione di Zap, consulta la documentazione di Zapier.

Di seguito alcune API per l'inserimento di leads in CalLite CRM:

curl --request POST --url https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json
--header 'Content-Type: application/json'
--header 'cache-control: no-cache'
--data '[ { "cognome" : "ROSSI", "nome" : "MARIO", "telefono_mobile" : "3280000001" } ]'
wget --quiet --method POST https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json
--header 'Content-Type: application/json'
--header 'cache-control: no-cache'
--body-data '[ { "cognome" : "ROSSI", "nome" : "MARIO", "telefono_mobile" : "3280000001" } ]' --output-document -
HttpResponse response = Unirest.post("https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json")
.header("Content-Type", "application/json")
.header("cache-control", "no-cache")
.body("[ { \"cognome\" : \"ROSSI\", \"nome\" : \"MARIO\", \"telefono_mobile\" : \"3280000001\" } ]")
.asString();
<?php
 $request = new HttpRequest();
 $request->setUrl('https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json');
 $request->setMethod(HTTP_METH_POST);
 $request->setHeaders(array(
  'cache-control' => 'no-cache',
  'Content-Type' => 'application/json'
 ));
 $request->setBody('[ { "cognome" : "ROSSI", "nome" : "MARIO", "telefono_mobile" : "3280000001" } ]');
 try {
  $response = $request->send();
  echo $response->getBody();
 } catch (HttpException $ex) {
  echo $ex;
 }
?>
<html>
 <head>
  <script type="text/javascript">
   function sendData() {
    var data = [ {cognome: "ROSSI", nome: "MARIO", telefono_mobile: "3280000001"} ];
    var xhr = new XMLHttpRequest();
    var url = 'https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json';
    xhr.open('POST', url, true);
    xhr.send(JSON.stringify(data));
   }
  </script>
 </head>
 <body>
  <input type="submit" onclick="sendData()" value="Invia">
 </body>
</html>
var settings = {
 "async": true,
 "crossDomain": true,
 "url": "https://demo.callite.it/web/importa/send/ID_CAMPAGNA/ID_LISTA/API_KEY/json",
 "method": "POST",
 "headers": {
  "Content-Type": "application/json",
  "cache-control": "no-cache"
 },
 "processData": false,
 "data": "[ { 'cognome' : 'ROSSI', 'nome' : 'MARIO', 'telefono_mobile' : '3280000001' } ]"
}
$.ajax(settings).done(function (response) {
 alert(response);
});

 

Ottieni più informazioni

 

Scarica la brochure Scarica le API