Request for incoming SMS

Request for incoming SMS

POST http://lk.mysmpp.ru/xml/incoming.php

Headers

NameTypeDescription

Cntent-type*

String

text/xml; charset=utf-8;

Request Body

NameTypeDescription

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

time.start*

String

Time (not inclusive) from which incoming SMS are requested

time.end

String

Time (not inclusive) at which incoming SMS is requested. Not a mandatory parameter.

If not set, all SMS will be returned

<?xml version="1.0" encoding="utf-8" ?>
<response>
     <sms id_sms="1234" date_receive="2012-01-31 12:55:55" originator="79612242243" prefix="IGRA" phone="79611111111">Message.</sms>
     <sms id_sms="1234" date_receive="2012-01-31 12:55:55" originator="79612242243" prefix="IGRA" phone="79611111111">Message.</sms>

</response>

Deciphering parameters in query responses

ParameterData typeDescription

sms.id_sms

Int

A unique number consisting only of digits

sms.date_receive

Int

Date and time of SMS receipt

sms.originator

Int

Phone number of the subscriber who sent the SMS

sms.prefix

String

Prefix. The initial part of the SMS text by which it was determined that this SMS belongs to this particular client. (This is used if the same number is used by different clients).

sms.phone

Int

Phone number to which the SMS was sent

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>
    <time start="2012-01-31 12:23:00" end="2012-02-31 12:23:00" />
</request>

Last updated