pajikos / sms-gammu-gateway

Simple SMS REST API gateway for sending SMS from gammu supported devices
Apache License 2.0
116 stars 31 forks source link

[request ]Send a SMS with GET METHOD #19

Closed michal-ambroziak closed 3 years ago

michal-ambroziak commented 3 years ago

Hello,

Would it be possible to implement GET method for sending a SMSes?

for example http://localhost:5000/sms?number=+4740000000&text=SMS message

pajikos commented 3 years ago

Hello, sending SMS is a state change operation (i.e. it is not idempotent), so the POST should be used here: IDEMPOTENT RESTFUL API You can make a fork and change it there. Regards