Refresh Thing Network Connection

This guide will show you how you can make a Refresh Network connection for a Thing.

Refresh Thing Network Connection

GET https://console.monogoto.io/thing/{ThingId}/refreshConnection/

Path Parameters

NameTypeDescription

ICCID*

String

The ICCID of your SIM

Headers

NameTypeDescription

YOUR_TOKEN*

String

Your authentication token

Result of invoking refresh connection request

Example using cURL:

curl -X GET \
    --url "https://console.monogoto.io/thing/ThingId_ICCID_{ICCID_HERE}/refreshConnection" \
    -H "accept: application/json" \
    -H "Authorization: Bearer {TOKEN_HERE}"

Please note that the above-shown command needs to be replaced with information:

{TOKEN_HERE} - replace with your token

{ICCID_HERE} - replace with the ICCID of your SIM

Example of request

curl -X GET \
    --url "https://console.monogoto.io/thing/ThingId_ICCID_8912372646888991/refreshConnection" \
    -H "accept: application/json" \
    -H "Authorization: Bearer eyJhb6IkpXVCJ9.eyJSb2xlIjoiVXN4lclByb2ZpbGVJZF9kZGM2MThhNC0wNTI1LTQ2MmUtYWN3NzhhMGQxYmbSI6Im4zgFkbWluIiwiQ3VzdG9tsbCwiVXNlcklkIjoiVklkXzg5Yj5Y2OGEyUtNDQThhLTEzZjA0MzJhZDE3YyINTAzgZmUtZGI51My00ZjRiLTktN2U5Yjc0ZWU1ZThlIiwiaWNzM3MjI5L2MDY3NTE2Mjl9.99aSLzP7kTgK6TZGW-xalrMu0GkW6viunt3XxbNng"

The result should show you if the Refresh Connection was invoked successfully.

Refresh connection invoked successfully for thing id ThingId_ICCID_8912372646888991

Last updated