Set GPRS Only (GET)
https://core.rock7.com/API3/Device/Update
Sets the GPRS Only flag to true
or false
.
When set to true
, mobile-terminated (MT) messages (e.g. Configuration Commands) can be delivered via GPRS instead of Iridium.
Parameter | Type | Description | Example |
---|---|---|---|
QUERY PARAMS | |||
id | string | ID of the target device | ONAKwlzdYZQrbELXqyEjaoLkJqpevRyX |
gprsOnly | boolean | Whether to enable GPRS only delivery | true |
username | string | Your API username | myUsername |
password | string | Your API password | myPassword |
Example with Parameters
curl --request GET \
--url 'https://core.rock7.com/API3/Device/Update?id=ONAKwlzdYZQrbELXqyEjaoLkJqpevRyX&gprsOnly=true&username=myUsername&password=myPassword' \
--header 'accept: application/json'
Example Response
{
"result": true,
"at": 1751537604149
}