How can I send messages with alphanumeric sender IDs?

Contact Us

Contact Us

[contact-form-7 404 "Not Found"]

You can messages with alphanumeric sender IDs through our web interface, the XML API or the REST API. If you would like to enable this feature in the web interface, please contact us first.

Once you’ve been approved to send messages with alphanumeric IDs, go to Settings > Preferences and you will see the option enabled: 2015-04-01_13h09_46

 

If you would like to change the name displayed, go to Settings > User Profile to change your FIRST name (only what you set as the first name will be displayed as the sender ID).


In XML, use the following code:

AlphanumericSender – the value of tag/element is the company name. The maximum allowed length of the AlphanumericSender value is 11 characters (digits and/or English characters).

  • <?xml version=”1.0″ encoding=”UTF-8″ ?>
  • <TELEMESSAGE>
  • <TELEMESSAGE_CONTENT>
  • <MESSAGE>
  • <MESSAGE_INFORMATION>
  • <SUBJECT>enter your subject here</SUBJECT>
  • </MESSAGE_INFORMATION>
  • <USER_FROM>
  • <CIML>
  • <NAML>
  • <LOGIN_DETAILS>
  • <USER_NAME>enter your user name here</USER_NAME>
  • <PASSWORD>enter your password here</PASSWORD>
  • </LOGIN_DETAILS>
  • </NAML>
  • </CIML>
  • </USER_FROM>
  • <MESSAGE_CONTENT>
  • <TEXT_MESSAGE>
  • <MESSAGE_INDEX>0</MESSAGE_INDEX>
  • <TEXT>enter your text here</TEXT>
  • </TEXT_MESSAGE>
  • <PROPERTY_MESSAGE>
  • <MESSAGE_INDEX>1</MESSAGE_INDEX>
  • <PROPERTY_NAME>AlphanumericSender</PROPERTY_NAME>
  • <PROPERTY_VALUE>13 Character Sender</PROPERTY_VALUE>
  • </PROPERTY_MESSAGE>
  • </MESSAGE_CONTENT>
  • <USER_TO>
  • <CIML>
  • <DEVICE_INFORMATION>
  • <DEVICE_TYPE DEVICE_TYPE=“SMS”/>
  • <DEVICE_VALUE>16173190666</DEVICE_VALUE>
  • </DEVICE_INFORMATION>
  • </CIML>
  • </USER_TO>
  • </MESSAGE>
  • </TELEMESSAGE_CONTENT>
  • <VERSION>1.6</VERSION>
  • </TELEMESSAGE>

In REST, use the following code:

Gateway URI: https://rest.telemessage.com/rest/message/send

REST Example:

  • [
  • {
  • “class”:“telemessage.web.services.AuthenticationDetails”,
  • “username”:“john_doe”,
  • “password”:“84738821”
  • },
  • {
  • “class”:“telemessage.web.services.Message”,
  • “textMessage”:“Hello dear, how are you? :-)”,
  • “recipients”:[
  • {
  • “value”:“+1-781-3683109”,
  • “type”:“SMS”,
  • “description”:“Mrs. Jane Doe”,
  • “class”:“telemessage.web.services.Recipient”
  • }
  • ],
  • “properties”: [
  • {
  • “class”: “telemessage.web.services.Property”,
  • “name” : “AlphanumericSender”,
  • “value”: “13 Character Sender”
  • }
  • ]
  • }
  • ]

 

Skip to content