FlashingCall (Voice Code)#
When sending FlashingCall (Voice Code) messages via HTTP API the following restrictions apply to them:
message text may contain up to 2000 characters;
the text should necessarily contain a four-digit or six-digit code used to call the subscriber (otherwise the request is returned with an error 400, Invalid request, Flashing Call text should contain a 4(6)-digit code);
FlashingCall message lifetime – from 1 to 5 minutes.
To send Voice Code you need to specify the type of FlashingCall message and send a request containing the code. The specified code (without accompanying text) will be sent to the supplier, who will insert it into the text of the message template. The result of such a request will be a call to the subscriber’s phone. When the subscriber picks up the phone, he will hear a voice message that will contain a 4-digit code. To connect this service please contact the Technical Support Service and agree on the text of the voice message template.
Sending Request#
POST and GET requests are allowed in the HTTP API.
Request Examples#
POST request with a message in Latin “test“ in a simple text format.
{
POST /login HTTP/1.1
Host: 10.10.10.10:9080
Content-Type: application/x-www-form-urlencoded;charset=utf-8
Content-Length: 58
serviceId=login&pass=123&clientId=79161234567&message=test
}
POST request with the text of the message in Cyrillic “test“ in URL format.
{
POST /login HTTP/1.1
Host: 10.241.0.194:9080
Content-Type: application/x-www-form-urlencoded;charset=utf-8
Content-Length: 78
serviceId=login&pass=123&clientId=79161234567&message=%D1%82%D0%B5%D1%81%D1%82
}
GET request with a message in Latin “test“ in a simple text format.
{
http://partner.ru/login?clientId=79161234567&message=test&pass=123&serviceId=login
}
GET request with the text of the message in Cyrillic “тест“ in URL format.
{
http://partner.ru/login?clientId=79161234567&message=%D1%82%D0%B5%D1%81%D1%82&pass=123&serviceId=login
}
Request Parameters#
The parameters are applicable for POST and GET requests.
The mandatory parameters are highlighted in bold.
Parameter |
Type |
Description |
---|---|---|
clientId |
string |
Subscriber’s phone number, no more than 25 character.
Examples: 79036550550, +79036550550, 8-903-655-05-50, 89036550550.
|
message |
string |
A message to send to the subscriber.
The partner must send in this parameter:
Maximum allowed message length for FlashingCall (Voice Code): 2000 characters.
Предупреждение When sending FlashingCall messages keep in mind that the message text must
contain a 4- or 6-digit numeric code that is used to call the subscriber.
Otherwise the request is returned with an error |
serviceId |
string |
An ID of the Partner’s service (login), which is used to send a message. The Service Provider establishes serviceId while enabling the Partner’s service and reports it to the Partner. |
pass |
string |
A password for authorization in the service. The Service Provider establishes the password while enabling the service and reports it to the Partner. |
ptag |
string |
Message identifier in the Partner’s system. It may contain from 1 to 50 characters. Valid characters: 0…9a…zA…Z- It may be any identifier in the Partner’s system. Примечание For example, it may be the unique identifier of message or the identifier of subdivision, which initiates the request for sending. In contrast to partnerMsgId parameter, which is needed to control resending and duplication, the Service Provider does not control values sent in ptag parameter (only format compliance is checked). The Service Provider optionally returns this identifier to the Partner as part of a request for receiving of the message delivery status (this functionality is described in the section «Service of message delivery status receiving») |
sending_time |
string |
Local time to send a message to a subscriber.
Specified in the hh_hh format, where two hour values specify the time
period in which the message should be sent.
Предупреждение If the parameter is specified, then its value cannot be empty. Примечание For example, if the parameter value is sending_time=10_20, the message will be sent within the period from 10:00 to 20:00 local time in the time zone of the subscriber. The time zone of the subscriber is determined not by actual location
of the subscriber.
If the Partner doesn’t send the time_zone parameter, the time zone of the
subscriber will be determined by the phone number.
If the Partner sends the time zone in the time_zone parameter, the message
will be sent to the subscriber according to local time of this time zone.
|
time_zone |
string |
The time zone of the subscriber. Specified in the ±hh:mm format. For details see ISO 8601. If the Partner sends the value time zone in this parameter, the message will be sent to the subscriber according to local time of this time zone, otherwise the time zone of the subscriber will be determined by the subscriber’s phone number. Примечание The subscriber with the number from Khabarovsk is in Moscow. The following sending options are available:
For the zero zone it is necessary to specify a sign «+» or «-«.
The «+» sign will be transformed into «%2B» when encoded in URL.
For example, the +04:00 time zone will be sent as time_zone= %2B04:00.
|
source |
string |
Name of the sender. The message will be sent to the subscriber from the service name specified in this parameter. This parameter is optional. If the parameter is missing in the request, the message will be sent to the subscriber from the default service name (setting on the Service Provider’s side). Важно This parameter is not available for the Partner by default. This feature can be activated only after approval by the Service Provider. In this case, the list of allowed senders“ names is set for the Partner’s service or the dynamic signature feature is activated. |
output |
string |
Request response format. If output=xml, the response to request will be formed as XML (for details see «Response in XML format»). In all other cases (the parameter is not specified or has a different value) the default format is used: plain-текст (for details see the section «Response to the request»). |
partnerMsgId |
string |
The message unique identifier in the Partner’s system. Allowable length: from 1 to 50 characters. This parameter is required for resending and duplicate control. The Partner can send a request to send a message several times with the same partnerMsgId. At that:
The Service Provider as an option returns this identifier to the Partner as a part of the request for receiving the message delivery status (this functionality isdescribed in the section «Service of message delivery status receiving»). This parameter is not available by default. The connection of this functionality should be agreed with your manager. |
Response#
Примечание
The Service Provider sends messages to subscribers only if the request is successfully processed.
Successful Sending#
In case of successful processing of the request Service Provider returns to the Partner:
HTTP code «200 OK»;
the ID of the message in the Service Provider’s system.
{
OK
4095284974
}
Response Code |
Description |
Possible Partners“ actions |
---|---|---|
200 |
Successful processing of the request.
In the body of the response, the identifier assigned
to the message by the Service Provider is transmitted.
The identifier is a 64-bit positive integer.
|
Common action with the service. |
Sending Errors#
When sending an incorrect request a short text error message may be transmitted in the response body.
An example of an error response – invalid serviceId/pass combination:
{
Invalid password
}
Response Code |
Description |
Possible Partners“ actions |
---|---|---|
400 |
Mandatory parameters are unavailable or they are set incorrectly. For example, the message parameter is not set (where it’s needed). |
Please repeat the request with the correct combination of parameters and their correct values. |
401 |
Incorrect combination of serviceId and pass parameter is sent. |
Please repeat the request with the correct serviceId and pass values. |
402 |
The balance of paid messages has been exhausted (for Partners working on prepaid). |
To resume sending messages, the Partner needs to make an advance payment and contact your supervising manager. The Partner shouldn’t repeat the request. |
403 |
The service with the serviceId parameter being sent is unavailable or inactive. |
Please contact your supervising manager. The Partner shouldn’t repeat the request. |
406 |
Impossible to send a message to a subscriber with clientId sent. |
The Partner shouldn’t repeat the request. |
408 |
Allowable rate of message sending is exceeded. Примечание The Partner’s service is set to a permissible speed of 10 requests per second. The Partner sent 12 requests per second. The first 10 requests will be successfully processed: in response to these requests the Service Provider will return the status 200 and send messages to subscribers. In response to the last 2 requests the Service Provider will return the Partner status 408 and won`t send messages to subscribers. |
The Partner can repeat the request without exceeding the allowed rate. |
409 |
Sending duplicates prohibited. Примечание The duplicate blocking feature is activated for the Partner’s service. During 24 hours the Partner sent 3 requests to send the message with the same text to the same number. The first request will be processed successfully and the message will be sent to the subscriber. In response to the last 2 requests Service Provider will return 409 status and won’t send these 2 messages to the subscriber. The duplicate blocking feature is deactivated for the Partner by default. The feature can be activated by the Partner’s request. The Service Provider can also activate the duplicate blocking feature for the Partner, if necessary: for example, in case of subscribers complaints. |
The Partner shouldn’t repeat the request. If it is necessary to send a duplicate message, the Partner can contact the Technical Support and provide it with the most complete information about the conditions for this situation. |
414 |
The allowed length of the message body sent in the message parameter is exceeded. |
The Partner can repeat the request after shortening the message text to the allowed length. |
500 |
Server internal error. Technical difficulties at the Service Provider side. |
When receiving the status 500 or when the timeout of waiting for a response expires, the Partner need to wait for at least 1 minute. After the pause, the Partner can repeat the request. If you receive 500 status more than 10 times you have to stop transmitting the request. After that, you should transmit to the Technical Support the most complete information about the conditions for the occurrence of this error for further analysis. |
503 |
The request is being currently processed. The error might appear if the Partner almost simultaneously sends several requests with the same value partnerMsgId. Until the first request is processed the Service Provider will return the state 503 to the Partner for all following requests with the same partnerMsgId. |
The Partner should wait for a response to the first request with the partnerMsgId parameter value sent. The Partner can repeat the request if the first request is not answered. |
Response in the XML Format#
200 – the request was successfully processed;
500 – internal server error, technical problems on the Service Provider’s side.
Response Examples#
{
<?xml version="1.0" encoding="utf-8"?>
<response>
<code>200</code>
<text>OK</text>
<payload>
<id>4095284976</id>
</payload>
</response>
}
Response example in XML format in case of error request sending: invalid combination of serviceId/pass.
{
<?xml version="1.0" encoding="utf-8"?>
<response>
<code>401</code>
<text>Invalid password</text>
</response>
}
When receiving the status 500 or when the timeout of waiting for a response expires, the Partner needs to wait for at least 1 minute. After the pause, the Partner can repeat the request.
Примечание
When receiving the status 500 more than 10 times, the request transmitting should be stopped. After that, the Partner needs to transmit to the Technical Support the most complete information about the conditions for the occurrence of this error for further analysis.
The mandatory parameters are highlighted in bold.
Name |
Description |
Note |
---|---|---|
xml version |
Number of XML version. |
It is contained in the prologue of the XML document. |
encoding |
Encoding. |
It is contained in the prologue of the XML document. |
response |
A root element. It contains code, text, payload elements. |
|
code |
A response code (values correspond to HTTP codes for responses of type text/plain). |
A detailed description of these codes is given above in the section “Response to the request“. |
text |
Additional brief textual information about the response. |
It may contain an error information. |
payload |
Information about the message, contains the id element. |
Transmitted only in case of a successful request execution (when the value is code=200). |
id |
The identifier assigned to the message by the Service Provider. The identifier is a 64-bit positive integer. |