Skip to content

Retrieve a command by messageId to check status

GET
/devices/id/getRtkCommand

Parameters

Path Parameters

id*

device id

Typenumber
Required

Query Parameters

messageId*

messageId of the command to retrieve

Typenumber
Required

Responses

Body (JSON)
JSON
{
"deviceId": 0,
"messageId": 0,
"commandType": 0,
"created": "string",
"sent": "string",
"receivedAck": "string",
"payload": "string",
"response": "string",
"id": 0
}

Samples

cURL
curl -X GET https://api.lightbug.cloud/api/devices/id/getRtkCommand
JavaScript
fetch("https://api.lightbug.cloud/api/devices/id/getRtkCommand")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://api.lightbug.cloud/api/devices/id/getRtkCommand");
Python
import requests
response = requests.get("https://api.lightbug.cloud/api/devices/id/getRtkCommand")
print(response.json())