Request for obtaining the list of bases
Request for obtaining the list of bases
POST
http://lk.mysmpp.ru/xml/list_bases.php
Headers
Content-type*
String
text/xml; charset=utf-8;
Request Body
login.value*
String
Your login in the system
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
<?xml version="1.0" encoding="utf-8" ?>
<response>
<base id_base="1234" name_base="Head Office Base" time_birth="12:48" local_time_birth="yes" day_before="1 "originator_birth="fitnes" on_birth="yes">Congratulations!"</base>
<base id_base="1235" name_base="BaseMoscowoffice" time_birth="12:48" local_time_birth="yes" day_before="1 "originator_birth="fitnes" on_birth="yes">Congratulations!</base>
...
</response>
Deciphering parameters in query responses
base
String
Congratulations text
base.id_base
Int
Unique base number in the system
base.name_base
String
Base name
base.time_birth
Int
Greeting time
base.local_time_birth
String
Read the greeting time in relation to the local time of the subscriber (yes
) or in relation to the system time (no
)
base.day_before
Int
How many days before your birthday to congratulate
base.originator_birth
String
Sender of congratulations
base.on_birth
String
Whether congratulations are enabled:
yes - enabled
no - off
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>
</request>
Last updated