Send SMS through MeserEser API
Mesereser API is a SOAP-based Web Service. The functions are available at:
https://ns.mesereser.com/Services/Services.asmxIn each function call, the user needs to supply a Meser Eser user name, password, and UserID.
To send SMS use the following call:
https://ns.mesereser.com/Services/Services.asmx?op=CreateAndSendSMSCampaign
The XML structure is:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="https://www.w3.org/2001/XMLSchema"
xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CreateAndSendSMSCampaign xmlns="https://messagingsystem.co.il/">
<oLogin>
<UserName>string</UserName>
<Password>string</Password>
</oLogin>
<iUserID>int</iUserID>
<sCampaignName>string</sCampaignName>
<sMessageText>string</sMessageText>
<saGroups>
<string>string</string>
</saGroups>
<saPhoneNumbers>
<string>string</string>
</saPhoneNumbers>
</CreateAndSendSMSCampaign>
</soap:Body>
</soap:Envelope>
| פרמטר | תיאור |
|---|---|
| oLogin.UserName | שם משתמש במערכת מסר עשר |
| oLogin.Password | סיסמה במערכת מסר עשר |
| iUserId | קוד — יש ליצור קשר עם מסר עשר לקבלתו |
| sCampaignName | שם הקמפיין לצורכי מעקב ודיווח — לא נראה לנמענים |
| sMessageText | תוכן ההודעה שתישלח לאיש הקשר |
| saGroups | שם קבוצה קיימת — ניתן להזין מספר קבוצות |
| saPhoneNumbers | מספרי טלפון ספציפיים לשליחה |