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 to add senders
  • Deciphering parameters in query responses
  • Example XML request
  1. СПОСОБЫ ВЗАИМОДЕЙСТВИЯ С A2P ПЛАТФОРМОЙ
  2. XML specification

Request to add senders

The sender can only consist of 11 Latin characters, numbers, spaces and "'?><,.-_=+/"!@#$%^&*() " or 15 digits

Request to add senders

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

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

originator.template*

String

Template text

originator.name_counterparty*

String

Name of counter party

originator.OGRN*

Int

OGRN of the organization

originator.KPP*

Int

CAT of the organization

originator.INN*

Int

TIN of the organization

originator*

String

Sender to be added

operator.MNC

Int

Operator's mobile code

operator.MCC

Int

Mobile country code

originator.comment

String

Commentary

file.id

Int

Id of the file to be uploaded

file.href

String

Link to downloadable file

<?xml version="1.0" encoding="utf-8" ?>
<response>
     <originator id_originator="">The sender is queued for registration.</originator>
</response>
<?xml version="1.0" encoding="utf-8"?>
<response>
     <error>Error message</error>
</response>

Deciphering parameters in query responses

Parameter
Data type
Description

originator

String

The result of adding a sender. Can contain the following values: Sender added.

  • The sender is queued for registration.

  • The sender can only consist of 11 Latin characters, numbers, spaces and symbols"\'?><,.-_=+/"!@#$%^&*() " or 15 digits

originator.id_originator

Int

Unique number of the sender in the system

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>
    <originator INN="INN" KPP="KPP" OGRN="OGRN" name_counterparty="counterparty name" template="template text" comment="comment">Sender</originator>
    <operator MCC="" MNC="" />
    ...
    <operator MCC="" MNC="" />
    <file href="http://..." id="1" />
    ...
    <file href="http://..." id="4" />
</request>

Last updated 1 year ago