Request to add/remove subscribers to the STOP list
Request to add/remove subscribers to the STOP list
POST
http://lk.mysmpp.ru/xml/stop.php
Headers
Name
Type
Description
Content-type*
String
text/xml; charset=utf-8;
Request Body
Name
Type
Description
login.value*
String
Your login in the system
add_stop.phone
Int
Phone number of the subscriber to be added to the STOP list
token.value*
String
You can use a secret key instead of login and password. To obtain it, please contact your manager
password.value*
String
Your password in the system
delete_stop.phone
Int
Phone number of the subscriber to be removed from the STOP list
<?xml version="1.0" encoding="utf-8" ?>
<response>
<phone phone="79612242243">delete</phone>
<phone phone="79612242244">add</phone>
<phone phone="79612242245">not_found</phone>
…
</response>
Deciphering parameters in query responses
Parameter
Data type
Описание
phone
Int
Phone number
error
String
The error text can take the following values:
Incorrect XML document format
Incorrect login or password
POST data is missing
Example XML request
<?xml version="1.0" encoding="utf-8" ?>
<request>
<security>
<login value="login" />
<password value="password" />
</security>
<add_stop>
<phone phone="79612242243" />
<phone phone="79612242244" />
…
</add_stop>
<delete_stop>
<phone phone="79612242243" />
<phone phone="79612242244" />
…
</delete_stop>
</request>
Last updated