Public
Documentation Settings

Emalify V2

This collections help you to

  • Send Bulk SMS
  • Send Express Alert SMS
  • Send Email Alerts
  • Query for Delivery Report
  • Query Account Balance
  • Purchase Airtime

POSTsendBulk POST

https://api.v2.emalify.com/api/services/sendbulk/

Send Bulk messages in one call.

HEADERS
Content-Type

application/json

Bodyraw
{
    "count": 1,
    "smslist": [
        {
            "partnerID": "•••••••",
            "apikey": "•••••••",
            "pass_type": "plain",
            "clientsmsid": 1234,
            "mobile": "0713482448",
            "message": "This is a test message 0",
            "shortcode": "Emalify"
        }
    ]
}
Example Request
curl
curl --location 'https://api.v2.emalify.com/api/services/sendbulk/' \
--header 'Content-Type: application/json' \
--data '{
    "count": 1,
    "smslist": [
        {
            "partnerID": "•••••••",
            "apikey": "•••••••",
            "pass_type": "plain",
            "clientsmsid": 1234,
            "mobile": "0713482448",
            "message": "This is a test message 0",
            "shortcode": "Emalify"
        }
    ]
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTsendSMS POST

https://api.v2.emalify.com/api/services/sendsms/
HEADERS
Content-Type

application/json

Bodyraw (json)
json
{
    "apikey":"908300ae0c96d2876a1e9833bbf12db1",
	"partnerID":"1",
	"mobile":"0725122088",
	"message":"TESTING AT ",
	"shortcode":"Emalify",
	"pass_type":"plain"
}

Example Request
curl
curl --location 'https://api.v2.emalify.com/api/services/sendsms/' \
--header 'Content-Type: application/json' \
--data '{
    "apikey":"908300ae0c96d2876a1e9833bbf12db1",
	"partnerID":"1",
	"mobile":"0725122088",
	"message":"TESTING AT ",
	"shortcode":"Emalify",
	"pass_type":"plain"
}

'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GETsendSMS GET

https://api.v2.emalify.com/api/services/sendsms/?apikey=•••••••&partnerID=•••••••&message=Test Message sent at &shortcode=Emalify&mobile=0713482448&timeToSend=
HEADERS
Content-Type

application/json

PARAMS
apikey

•••••••

partnerID

•••••••

message

Test Message sent at

shortcode

Emalify

mobile

0713482448

timeToSend
Example Request
curl
curl --location 'https://quicksms.advantasms.com/api/services/sendsms/?apikey=%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2&partnerID=%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2%E2%80%A2&message=Test%20Message&shortcode=TL_ALERT&mobile=0713482448' \
--header 'Content-Type: application/json'
200 OK
Example Response
json
{
  "responses": [
    {
      "respose-code": 200,
      "response-description": "Success",
      "mobile": "254713482448",
      "messageid": 78726470,
      "networkid": "1"
    }
  ]
}
Date

Fri, 31 Jan 2020 09:46:22 GMT

Server

Apache

X-Frame-Options

sameorigin

Strict-Transport-Security

max-age=63072000; includeSubdomains;

Content-Length

130

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json

POSTcheckAccountBalance POST

https://api.v2.emalify.com/api/services/getbalance/

Check Account balance

HEADERS
Content-Type

application/json

Bodyraw (json)
json
{
  "apikey":"•••••••",
  "partnerID":"•••••••"
}
Example Request
curl
curl --location 'https://quicksms.advantasms.com/api/services/getbalance/' \
--header 'Content-Type: application/json' \
--data '{
  "apikey":"•••••••",
  "partnerID":"•••••••"
}'
200 OK
Example Response
json
{
  "response-code": "200",
  "credit": "322323.00",
  "partner-id": "12333"
}
Date

Wed, 12 Feb 2020 10:37:53 GMT

Server

Apache

X-Frame-Options

sameorigin

Strict-Transport-Security

max-age=63072000; includeSubdomains;

Content-Length

64

Keep-Alive

timeout=5, max=100

Connection

Keep-Alive

Content-Type

application/json