Send SMS to Thing

This guide will provide a small guidance on how to send SMS message from portal to your Thing.

Send an SMS to a single Thing

GET https://console.monogoto.io/thing/ThingId_ICCID_{ICCID}/sms

Path Parameters

Name
Type
Description

ICCID*

String

The ICCID of your SIM

Headers

Name
Type
Description

TOKEN_HERE*

String

Your authentication token

Request Body

Name
Type
Description

SMS_CONTENT*

String

SMS message content

SENDER_NAME

String

Sender name you wish recipient to see

{
    // Response
}

Please note that in order for SMS message to reach a Thing, it must be connected to the network.

Example using cURL:

curl -X POST \
    --url "https://console.monogoto.io/thing/ThingId_ICCID_{ICCID}/sms" \
    -H "accept: application/json" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer {TOKEN_HERE}" \
    -d "{ \"Message\": \"{SMS_CONTENT}\", \"From\": \"{SENDER_NAME}\"}"

Add your Token, Thing ICCID in the POST request, as well as the SMS Content and the Sender Name.

Example of request:

Expected result showing ID of the SMS message:

Last updated

Was this helpful?