So if I understand what you’re looking at there, those webhooks aren’t for sending SMS. They’re for sending data messages. So you can have a service on the device listening on a specific port and you create a webhook for that port and then you can send data packets that will hit the service on the device.
Not sure what your device is, but if it’s running linux you can test this with the netcat utility:
nc -l 5000
Listens on port 5000
Then you can make a webhook that goes to port 5000 on the device. You can also test this by doing the cloud messaging feature on the dashboard under the messaging tab.
Okay I’m not running Linux I’m using a Sim7000a after explanation I may be using this in the wrong way. I did figure out if I wanted this to work I would have to get a phone number a text to my SIM card, which is what I was trying to avoid.
Yes I have been using this one all along, I was just checking out the other features because they did not require authentication. I will continue to use this rest at before my project thanks again.