Register Any Name or Number
A name of your company, brand or customer support number will be displayed as a sender when you send the messages.
Request example:
POST /senderId HTTP/1.1
Host: api.vertexsms.com
Content-Type: application/json
Accept: application/json
X-VertexSMS-Token: eB52vNTPL9fO3rDrx8pYmVnj6nqceHNhnqceHNh
{ “name” : “TestSender”, “type”: “AlphaNumeric”, “category”: “Other”, “categoryDescription”: “Some description”, “notificationUrl”: “http://client.com/senderIdCallBack”}
Response example:
HTTP/1.1 200 OK
Content-Type: plain/textbr />
Cache-control: no-cache
123
If senderId was successfully register - returns HTTP status code 200 OK and ID (123) of the new senderID.
• Company
• Product
• Brand
• Shortcode
• Landline
• Other
Your mobile number will be displayed as a sender when you send the messages and people will be able to reply to you.
Request example:
POST /senderId HTTP/1.1
Host: api.vertexsms.com
Content-Type: application/json
Accept: application/json
X-VertexSMS-Token: eB52vNTPL9fO3rDrx8pYmVnj6nqceHNhnqceHNh
{ “name” : “37069555555”, “type”: “MSISDN”}
Response example:
HTTP/1.1 200 OK
Content-Type: plain/text
Cache-control: no-cache
123
If mobile number was successfully register - returns HTTP status code 200 OK and ID (123) of the new senderID. After that you will receive a 5-digit PIN code (example: 12345) via SMS to this number. In the next step you need to confirm the senderId with the received PIN code.
POST /senderId/confirm/123 HTTP/1.1
Host: api.vertexsms.com
Content-Type: application/json
Accept: application/json
X-VertexSMS-Token: eB52vNTPL9fO3rDrx8pYmVnj6nqceHNhnqceHNh
{ “code” : “12345”}