Kontakte in der Blacklist hinzufügen
Mit dieser Methode können Sie einen Kontakt in Ihre schwarze Liste aufnehmen.
POST
/blacklist
Body-Parameter
value
notwendig
|
The recipient's number |
info1 | Information 1 |
info2 | Information 2 |
info3 | Information 3 |
info4 | Information 4 |
Beispiele
POST /blacklist HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/json
{
"blacklist": {
"contacts": {
"gsm": [
{
"value": "41781234567",
"info1": "Hiroo",
"info2": "Onoda"
},
{
"value": "41781234566",
"info1": "Grace",
"info2": "Hopper"
},
{
"value": "41781234565",
"info1": "Hedy",
"info2": "Lamarr",
"info3": "Extase",
"info4": "1933"
}
]
}
}
}
POST /blacklist HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/xml
<?xml version="1.0" encoding="UTF-8" ?>
<list>
<contacts>
<gsm info1="Hiroo" info2="Onoda">41781234567</gsm>
<gsm info1="Grace" info2="Hopper">41781234566</gsm>
<gsm info1="Hedy" info2="Lamarr" info3="Extase" info4="1933">41781234565</gsm>
</contacts>
</list>
Ergebnisformat
{
"status": 1,
"message": "OK",
"added_contacts": 3,
}
<?xml version="1.0" encoding="UTF-8" ?>
<response>
<status>1</status>
<message>OK</message>
<added_contacts>3</added_contacts>
</response>