Quando le sale d’attesa sono sovraffollate, vuoi fare in modo che il tempo sia speso nel modo più efficiente possibile. Ciò vuol dire che la prima cosa che vuoi evitare sono gli appuntamenti mancati. Con un messaggio SMS precedente all’appuntamento, puoi ricordare al paziente il suo appuntamento e in questo modo ridurre drasticamente il numero di pazienti che non si presentano o che non arrivano al momento giusto. Inoltre, puoi menzionare nuovamente l’esatto orario dell’appuntamento ed ogni linea guida per il Covid19, così da evitare ogni ambiguità che potrebbe sorgere.
Ad esempio:
E’ ancora piuttosto comune che i pazienti non si presentino nel modo appropriato ad un esame o operazione, così che l’appuntamento debba essere posposto. Le conseguenze di questo sono simili a quelle dei mancati appuntamenti: costi elevati e lunghe liste di attesa.
<?php $ch = curl_init(); $url = "https://api.smsgatewayapi.com/v1/message/send"; $client_id = "XXX"; // Your API key $client_secret = "YYY"; // Your API secret $data = [ 'message' => "Hello World", //Message 'to' => "393123456789", //Receiver 'sender' => "YourName" //Sender ]; curl_setopt($ch, CURLOPT_URL, "$url"); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "X-Client-Id: $client_id", "X-Client-Secret: $client_secret", "Content-Type: application/json", ]); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data)); $response = curl_exec($ch); ?>
const https = require("https"); const client_id = "XXX"; // Your API key const client_secret = "YYY"; // Your API secret const data = JSON.stringify({ message: "Hello World", //Message (required) to: "393123456789", //Receiver (required) sender: "YourName", //Sender (required) }); const options = { hostname: "api.smsgatewayapi.com", port: 443, path: "/v1/message/send", method: "POST", headers: { "X-Client-Id": client_id, "X-Client-Secret": client_secret, "Content-Type": "application/json", "Content-Length": data.length, }, }; const req = https.request(options, (res) => { console.log(`statusCode: ${res.statusCode}`); res.on("data", (d) => { process.stdout.write(d); }); }); req.write(data); req.end();
require "uri" require "net/http" url = URI("https://api.smsgatewayapi.com/v1/message/send") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["X-Client-Id"] = "XXX" // Your API key request["X-Client-Secret"] = "YYY" // Your API secret request["Content-Type"] = "application/json" form_data = [ ['message', 'Hello World'], //Message (required) ['to', '393123456789'], //Receiver (required) ['sender', 'YourName'] //Sender (required) ] request.set_form form_data, 'multipart/form-data' response = https.request(request) puts response.read_body
import requests url = "https://api.smsgatewayapi.com/v1/message/send" payload={ 'message': 'Hello World', #Message (required) 'to': '393123456789', #Receiver (required) 'sender': 'YourName' #Sender (required) } headers = { 'X-Client-Id': 'XXX', #Your API key 'X-Client-Secret': 'YYY', #Your API secret 'Content-Type': 'application/json' } response = requests.request( "POST", url, headers=headers, json=payload ) print(response.text)
var url = "https://api.smsgatewayapi.com/v1/message/send"; var payload = new { message = "Hello World", to = "393123456789", sender = "YourName" }; var client = new RestClient(url); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("X-Client-Id", "XXX"); // Your API key request.AddHeader("X-Client-Secret", "YYY"); // Your API secret request.AddHeader("Content-Type", "application/json"); request.RequestFormat = DataFormat.Json; request.AddJsonBody(payload); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
Smstools può essere integrato al tuo software preesistente. In questo modo, puoi lavorare in modo ancora più efficiente.
Invia ai tuoi clienti un promemoria automatizzato via SMS. Un servizio ampiamente apprezzato che permette di diminuire i costi.
Nel 2020, gli ospedali sono sempre più dipendenti da infrastrutture IT stabili per restare operativi. Un server che rischia di collassare o un sistema operativo bloccato può avere un maggiore impatto sulla sicurezza di personale e pazienti.
Ed è per questo che è importante informare il più velocemente possibile chi si occupa di gestire le crisi in caso di problemi. Un SMS generato automaticamente viene inviato alla persona giusta per risolvere il problema il più velocemente possibile.
Usa una Password Temporanea (Autenticazione a 2 fattori) via SMS per controllare che il cliente sia davvero chi dice di essere
REGISTRATICon Smstools puoi inviare facilmente e rapidamente una allerta SMS per evacuare un campus in caso di incidenti. Anche questo può essere fatto con la nostra pratica app Pannello di Controllo.
Usa il nostro software SMS per inviare messaggi SMS.
Usa il nostro gateway API e collega il tuo software di programmazione direttamente ai nostri servizi SMS.
Usa Email2SMS per inviare Messaggi SMS con il tuo software email.
Iscriviti oggi e invia il tuo primo messaggio in pochi minuti.