Redirect to /call
for convenience
none
Serves static files like css and images from the /static
directory. Place any file there you want make publicly avialable
none
Show newCall.html
page, which allows to create new calls
none
Create a new call
TODO
Information about call with ID {id}
none
Show active.html
, which displays active calls
none
Show importPersons.html
, which allows to add a single person to the database
none
Add person to database
TODO
Upload .csv
for bulk import of persons
TODO
Listen for incoming webhook to accept a appointment
TODO
Listen for incoming webhook to delete a single user from the database
TODO
Listen for incoming webhook to cancel an appointment
TODO
Twilio Nummer: +49 xxx xxxxxxxx
Hab Twilio aufgesetzt:
Eingehende SMS werden folgt verarbeitet und triggern dann API Calls bei der Impfbruecke :
https://www.twilio.com/docs/studio/widget-library/http-request
SMS Inhalt | JA | STORNO | LOESCHEN LÖSCHEN |
---|---|---|---|
API Call | /ja | /storno | /loeschen |
Der endpunkt ist über Base Auth möglich also "https://user:[email protected]/api/ja" Die payload ist überall die gleiche und beinhaltet die Absendernummer im e.164 format
{
"from": "+49xxxxxxxxx"
}
Der Weg um SMS zu senden läuft auch über eine REST API
https://www.twilio.com/docs/studio/rest-api
Endpoint ist ein POST auf "https://studio.twilio.com/v2/Flows/Sid/Executions" mit den Parametern "To" und "From" und Parameters=json
folgende ausgehende SMS sind möglich:
Name | Anfrage | Absage | Zusage | Loeschbestaetigung |
---|---|---|---|---|
JSON | A | B | B | B |
folgende JSONs gibt es
A: Dieser JSON schicke ein Send&Wait.SMS inhalt in "message" packen und mit waitSeconds die Wartezeit definieren.
{
"type": "anfrage",
"message":"string",
"waitSeconds":3600
}
waitSeconds: definiert den Wert wie lange auf eine Antwort gewartet wird. Wenn 'waitTime > waitSeconds' wird ein STORNO ausgeführt. Wenn eine Antwort kommt, wird diese wieder geparsed und bei JA kommt eine Bestätigung.
Dieser JSON kann einfach nur stupide SMS verschicken. SMS inhalt in "message" packen und spaß haben B:
{
"type": "nachricht",
"message":"string"
}