Click here to Skip to main content
15,890,506 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am trying to call "smszone API" from REST API Client, but I recied response 200 ok and message "INVALID SENDSMS CALL (WELCOME) " and I didn't receive message on mobile

I am hitting this API: http://www.smszone.in/sendsms.asp
POST METHOD

passing following parameter in JSON body

header:application/JSON
page: SendSmsBulk
username: something
password: something
number: receiver mobile number
message: random text
SendId: something

Anybody can help what I am doing wrong??

What I have tried:

I tried to google but I couldn't find any answer
Posted
Updated 27-Sep-19 9:48am
Comments
Richard Deeming 27-Sep-19 13:20pm    
Contact their support team. They are the only people who can answer your question.

1 solution

If they really replied with,
Quote:
I recied response 200 ok and message "INVALID SENDSMS CALL (WELCOME) "
Then I recommend leaving the platform as they leave no option of debugging or understanding what went wrong.

There are some ethics in HTTP programming (or Web API development), a 200 should be returned if everything goes fine and task has been accomplished—it can be a page load request, a record creation, etc.—but this Web API responds with a 200, but returns an error message and does not send anything.

You can try other products such as Twilio[^]—I do not endorse the product—or you can try any other online SMS sending API, such as Alibaba Cloud SMS[^] service if that makes sense to you.

You can learn more about Alibaba Cloud SMS service here, Connect to the World with Alibaba Cloud SMS (Short Message Service)[^].
 
Share this answer
 
Comments
Akshay malvankar 28-Sep-19 1:54am    
sorry I could not try another I want to be used this API only

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900