1) Http Posts (API)
2) C# Example
3) Visual Basic Example
1) Basic FTP Information
2) Advanced FTP (BLAST FILE FORMAT)
1) SMPP Information
1) Branding LogicSMS as your own
1) Send SMS using MS-SQL (Very Simple)
1) Posting back the message in real time
1) HTTP posts to dial a phone & play a message
|
HTTP posts are used by programmers to intergrate their
existing applications into LogicSMS. LogicSMS supports 3 types of posts which are
described below.
**
LogicSMS supports secure HTTPS posts, however when submitting, please submit to https://www.logicsms.net
**
|
http://www.logicsms.co.za/postmsg2.aspx
This post sends an SMS message through LogicSMS
Parameters
-
Username (eg. SMS@LogicSMS)
-
Password
-
Message (eg. Must be URL Encoded)
-
Originator (Set the Originator to the word REPLY if you want replies on this message)
-
Mobile (Cell Number to which to send the message)
E.g.
http://www.logicsms.co.za/postmsg2.aspx?username=user@org&password=demo&mobile=12345678 &message=Test&Originator=LogicSMS
Return Resultset
This Http post returns a unique number which can be used to query the status of the SMS message.
The resulting XML looks as follows
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<Message>
<Id>127658776</Id>
<Status>SENT</Status>
<MessageCost>3</MessageCost>
<Parts>3</Parts>
<IdList>127658774,127658775,127658776</IdList>
</Message>
http://www.logicsms.co.za/querysms.aspx
This post queries an SMS message that has been sent
Parameters
-
Username (eg. SMS@LogicSMS)
-
Password
-
Unique (The unique identifier used when sending the message)
E.g.
http://www.logicsms.co.za/querysms.aspx?username=user@org&password=demo&Unique=000123456
http://www.logicsms.co.za/querycredits.aspx
This post returns the amount of credits the user has left
Parameters
-
Username (eg. SMS@LogicSMS)
-
Password
E.g.
http://www.logicsms.co.za/querycredits.aspx?username=user@org&password=demo
|