Webcom Mobi API Docs
RU
  • Introduction
  • СПОСОБЫ ВЗАИМОДЕЙСТВИЯ С A2P ПЛАТФОРМОЙ
    • JSON specification
      • Sending SMS, Viber, Flash SMS, WAP-Push
      • SMS status request
        • POST request
        • Webhook
      • Balance check request
    • HTTP GET specification
      • Sending SMS
      • Sending Viber
      • Sending Cascade
      • Request message status
      • Registration
    • XML specification
      • Sending SMS, Viber, Flash SMS, WAP-Push
      • SMS status request
        • POST request
        • Webhook
      • Balance check request
      • Request to receive a list of senders
      • Request to add senders
      • Request for incoming SMS
      • Request for information by phone number
      • Request for obtaining the list of bases
      • Request to change parameters, add/remove bases
      • Request for receiving the list of subscribers of the base
      • Request to add/edit/delete subscribers of the base
      • Request to get the list of numbers from the STOP list
      • Request to add/remove subscribers to the STOP list
      • Request to receive the list of scheduled SMS
      • Request to delete a scheduled SMS
      • Request to get the time of change of something
      • Request for time verification
      • File upload request
      • Request to refill users' balance
    • ВЗАИМОДЕЙСТВИЕ С ПЛАТФОРМОЙ MSG (НЕОФ КАНАЛЫ)
    • Specification JSON
      • Чекинг базы номеров
Powered by GitBook
On this page
  • Request for receiving the list of subscribers of the base
  • Deciphering parameters in query responses
  • Example XML request
  1. СПОСОБЫ ВЗАИМОДЕЙСТВИЯ С A2P ПЛАТФОРМОЙ
  2. XML specification

Request for receiving the list of subscribers of the base

Request for receiving the list of subscribers of the base

POST http://lk.mysmpp.ru/xml/list_phones.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

base.last_update

Int

Minimum date and time of registration (or last change) of the subscriber data you need to request

base.page*

Int

Page number. The entire list of base numbers is divided into pages. You cannot request the entire database. You can only request an individual page. The numbering starts with a one

base.id_base*

Int

Base number 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>
     <phones page="1" num_pages="100">
          <phone phone="79612242243" region="Novosibirsk " operator="Vimpelcom" name="Konstantin" surname="Ermolaev" patronymic="Alexandrovich" date_birth="1984-08-21" male="m" addition_1="First-additional-field" addition_2="second" last_update=" 2011-03-25 08:39:48"/>
          <phone phone="79612242244" region="Novosibirsk " operator="Vimpelcom" name="Konstantin" surname="Ermolaev" patronymic="Aleksandrovich" date_birth="1984-08-21" male="m" addition_1="First-additional-field" addition_2="second" last_update=" 2011-03-25 08:39:48" />
...
     </phones>
</response>
<?xml version="1.0" encoding="utf-8"?>
<response>
     <error>Error message</error>
</response>

Deciphering parameters in query responses

Parameter
Data type
Description

phones.page

Int

Page number

phones.num_pages

Int

Total pages

phones.phone.phone

Int

Subscriber's phone number

phones.phone.region

String

Region

phones.phone.operator

String

Operator

phones.phone.name

String

Subscriber Name

phones.phone.surname

String

Subscriber's last name

phones.phone.patronymic

String

Subscriber's patronymic

phones.phone.date_birth

Int

Date of birth

phones.phone.male

String

Gender:

  • "f"-female

  • "m" is masculine

phones.phone.addition_1

String

First additional field

phones.phone.addition_2

String

Second additional field

phones.phone.last_update

Int

Date and time of registration (or last change) of subscriber data

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>
    <base id_base="1234" page=”1” last_update=”2011-03-25 08:39:48”/>
</request>

Last updated 1 year ago