Einzel-SMS
Mit dieser Methode können Sie ein Einzel-SMS an einen Empfänger senden.
GET
/send
Abfrage-Parameter
token
notwendig, wenn in den Headers nicht vorhanden
|
Ihr Token |
text
notwendig
|
Ihre Nachricht |
to
notwendig
|
Ihr Ziel |
pushtype | Die Art des Versands (alert oder marketing ) |
delay | Versanddatum Y-m-d H:i:s . Muss in der Zeitzone liegen Europe/Paris |
sender | Ermöglicht das Personalisieren des Absenders |
gsmsmsid | Eine selbst gewählte ID, um die Nachricht mit ihrer Empfangsbestätigung zu verknüpfen |
Über die Art der Sendung und den Absender
Wenn Sie die grundlegenden Informationen über SMS noch nicht gelesen haben, wäre es von Vorteil dies zu tun.
Beispiel zum Loslegen
Ersetzen Sie your.token durch Ihren Eigenen und Sie sind bereit, Ihre Nachricht zu senden. Wenn Sie noch kein Token erstellt haben, können Sie dies hier tun.
https://api.smsup.ch/send?text=Hello world&to=41781234567&token=your.token
Detaillierte Beispiele Mit dem Token in den Headern und im URL
GET /send?text=Hello world&to=41781234567
Host: api.smsup.ch
Accept: application/json
Authorization: Bearer your.token
GET /send?text=Hello world&to=41781234567&token=your.token&delay=2024-12-01 10:17:30
Host: api.smsup.ch
Accept: application/json
Ergebnisformat
A status -8 doesn't mean your SMS won't be sent. No need to retry unless you want to send the same SMS multiple times 😉
{
"status": 1,
"message": "OK",
"ticket": "14672468", //The id of your campaign
"cost": 1, //The cost of your campaign
"credits": 642, //Your credits after your campaign has been created
"total": 1, //Number of message before filtering
"sent": 1, //Number of message after filtering
"blacklisted": 0, //Number of blacklisted numbers
"duplicated": 0, //Number of duplicated numbers
"npai": 0 //Number of npai numbers
"invalid": 0, //Number of invalid numbers
"not_allowed": 0, //Number of SMS sent to a not allowed country
"flood": 0, //Number of SMS filtered by anti-flood
"country_limit": 0, //Monthly limit for this country reached
}
<response>
<status>1</status>
<message>OK</message>
<ticket>14672468</ticket>
<cost>1</cost>
<credits>642</credits>
<total>1</total>
<sent>1</sent>
<blacklisted>0</blacklisted>
<duplicated>0</duplicated>
<npai>0</npai>
<invalid>0</invalid>
<not_allowed>0</not_allowed>
<flood>0</flood>
<country_limit>0</country_limit>
</response>
Quelle est la différence entre cost, total et sent ?
Das Feld cost
ist die Anzahl der Credits, die Ihre Kampagne gekostet hat. Zur Erinnerung: Eine SMS mit mehr als 160 Zeichen kostet mindestens 2 Credits. Mehr darüber
Das Feld total
ist die Anzahl der Telefonnummern, die Sie zur Erstellung Ihrer Kampagne angegeben haben..
Das Feld sent
ist die Anzahl der Telefonnummern, an die wir tatsächlich eine SMS geschickt haben (nach Entfernung ungültiger Nummern, Blacklist ...).