SIM Management
API Reference
Send Sms

SendSms

This endpoint allows sending of an sms message to the sim.

Network Support

NetworkNetworkId
eSIMsmart218
eSIMsmart IOT225
  • SIM status must be "on-hire"
  • All SIMs must be:
    • On the same network
    • On the same account

Request

NameTypeDescriptionRestrictions
serialNumbersstring arrayAn array of serial numbers corresponding to the SIMs you wish to updateAt least one
messagestringThe message to send
binaryboolShould the message be sent in binary format
Example SendSms
curl --location 'https://api.cellhire.com/api/simSubmission/SendSms' \
--header 'Content-Type: application/json;charset=UTF-8' \
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6IjRBMDlENTFBMDhEOEUxMTU0OTkyODFDN...' \
--data '{
    "serialNumbers": [
        "987654321"
    ],
    "message": "test message",
    "binary": false
}'