- KiT Docs Portal
- Личный кабинет
- WhatsApp API
- Типы сообщений
- Форматирование в текстовых сообщениях
- Форматы WhatsApp Media
- Коды ошибок платформы WABA
- Шаблонные сообщения
- Категории шаблонов
- Типы заголовков в шаблонных сообщениях
- Тело шаблонного сообщения
- Кнопки в шаблонных сообщениях
- Общее описание запроса
- Сообщение со всеми параметрами - заголовок изображение
- Сообщение со всеми параметрами - заголовок текст
- Сообщение изображение и текст
- Сообщение изображение, текст и по дпись сообщения
- Сообщение изображение, текст и 2 кнопки - переход на сайт и позвонить
- Сообщение изображение, текст и 3 кнопки быстрого ответа
- Сообщение местоположение и текст
- Сообщение динамиечский текст тело сообщения
- Сообщение динамиечский текст тело сообщения и заголовка сообщения
- Сообщение статичный текст
- Получить имена всех шаблонов - gettemplate
- Авторизационныe сообщения
- Чат сообщения
- Входящие сообщения от абонента
- Установить WebHook - setwebhookPOST
- Статусы сообщений на WebHookPOST
- HTTP SMS API
- JSON SMS API
- SOAP SMS API
- XML SMS API
- MobiCheck SMS API. OTP/2FA
- SMPP SMS API
getSenders
POST
http://isms.center/soap/server
Запрос на получение всех зарегистрированных на Вас заголовков (имена отправителя)#
INFO
| WSDL | http://isms.center/soap |
| Сервер | http://isms.center/soap/server |
HTTPS
| WSDL | https://isms.center/soap |
| Сервер | https://isms.center/soap/server |
📌
Request
Header Params
Content-Type
string
required
Example:
text/xml
SOAPAction
string
required
Example:
urn:SendSMSLib-SendSMSService#GetSenders
Body Params application/xml
soapenv:Header
string
required
soapenv:Body
object
required
tem:SendSMSService___GetSenders
object
GetSenders
Example
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:SendSMSService___GetSenders>
<tem:login>mycompany</tem:login>
<tem:password>123456</tem:password>
</tem:SendSMSService___GetSenders>
</soapenv:Body>
</soapenv:Envelope>
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://isms.center/soap/server' \
--header 'SOAPAction: urn:SendSMSLib-SendSMSService#GetSenders' \
--header 'Content-Type: text/xml' \
--data-raw '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
<soapenv:Header/>
<soapenv:Body>
<tem:SendSMSService___GetSenders>
<tem:login>mycompany</tem:login>
<tem:password>123456</tem:password>
</tem:SendSMSService___GetSenders>
</soapenv:Body>
</soapenv:Envelope>'
Responses
🟢200OK
application/xml
Body
SOAP-ENV:Body
object
required
ns1:SendSMSService___GetSendersResponse
object
GetSendersResponse
Example
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tempuri.org/">
<SOAP-ENV:Body>
<ns1:SendSMSService___GetSendersResponse>
<ns1:Result>
<ns1:SenderResult>
<ns1:StatusCode>0</ns1:StatusCode>
<ns1:Status>OK</ns1:Status>
<ns1:Senders>
<ns1:Sender>
<ns1:operator>Tele2</ns1:operator>
<ns1:senderIds>
<ns1:senderId>InfoSMS</ns1:senderId>
</ns1:senderIds>
</ns1:Sender>
<ns1:Sender>
<ns1:operator>Kcell</ns1:operator>
<ns1:senderIds>
<ns1:senderId>KiT_Notify</ns1:senderId>
</ns1:senderIds>
</ns1:Sender>
<ns1:Sender>
<ns1:operator>Beeline</ns1:operator>
<ns1:senderIds>
<ns1:senderId>KiT_Notify</ns1:senderId>
</ns1:senderIds>
</ns1:Sender>
<ns1:Sender>
<ns1:operator>Altel</ns1:operator>
<ns1:senderIds>
<ns1:senderId>InfoSMS</ns1:senderId>
</ns1:senderIds>
</ns1:Sender>
</ns1:Senders>
</ns1:SenderResult>
</ns1:Result>
</ns1:SendSMSService___GetSendersResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
🟠404Record Not Found
Modified at 2023-09-25 09:01:04