According to my knowledge prior to R80.10 it was possible to customize $CPVPNDIR/bin/sendsms script in order to customize ways how to interact with Custom SMS providers such as bulkSMS.
Based on a number of tests I have done it looks that this script is no longer getting called when Dynamicid is set up.
I do have a working curl_cli HTTP Post which looks like this:
curl -v -u 'tokenID:tokenSecret' --request POST https://api.bulksms.com/v1/messages \
-H 'content-type: application/json' \
--data '{"to":"telnumber","body":"test SMS"}'
but now that $CVPNDIR/bin/sendsms is not getting executed I'm wondering that what would be the best way to use such http api post?
I appreciate any inputs.