Upgrading From V3 To V4

Advantages of V4 over V3

  • Improvised architecture leading to higher submission speed of SMS and increased by 60-80% as well.
  • No group ID will be created for every campaign.
  • Group status API has been deprecated. You may use SMS Status API instead.
  • All of the Sent messages will be displayed in “All sent items” rather than ‘Sent SMS’

How can I upgrade my API?

If you are running an older version and you want to upgrade to take advantage of the latest and greatest API, whether that means new functionality or streamlining the responses so the API’s must be faster for you. Simply use .../v4/... within your API URL to leverage the latest version of API.

Changes In V4 As Compared To V3

  • Format of message ID is changed to a UUID convention. UUID is 128-bit unique identifier. For eg. 52a9505-7add-4ac5-98ab-664888f41c82:1
  • API V4 URL will be like "http://alerts.domain.com/api/v4/?...""

API V4 Response Format

{
    "status": "OK",
    "data": [
        {
            "id": "7ece2170-34f4-4d59-a426-90a9bcbaeb1c:1",
            "customid": "",
            "customid1": "",
            "customid2": "",
            "mobile": "9711xxxxxx",
            "status": "AWAITED-DLR"
        }
    ],
    "message": "Campaign of 1 numbers Submitted successfully."
}