Get device information
Gets the details of a single device.
Gets the details of a single devices.
GET
https://api.runonrufus.com/v0/devices/{deviceid}
Path Parameters
Name | Type | Description |
---|---|---|
deviceid* | String | Id of the device to retrieve. |
Headers
Name | Type | Description |
---|---|---|
api_key* | String | Account api key with READ or READ_WRITE access type. |
{
"description": "Success",
"result": {
"deviceid": "1C3A38059155C47209E3F09210B22D02B079F231A6D4D53421D65E076CD82D56",
"type": "One4All",
"model": "One4All 5 PRO",
"alias": "Finish and start",
"firmware": "1.0.1",
"serial_number": "O4A-00150",
"creation_date": "2023-02-02T12:10:13.000Z",
"sessions": 2,
"passings": 1208,
"last_seen": "2023-02-03T15:45:15.000Z"
}
}
{
description: "Device not found",
}
curl -X GET \
-H "Content-Type: application/json" \
-H "api_key: ror-ae4fc6c19681a20fad30" \
https://api.runonrufus.com/v0/devices/1C3A38059155C47209E3F09210B22D02B079F231A6D4D53421D65E076CD82D56
<?php
$url = "https://api.runonrufus.com/v0/devices/1C3A38059155C47209E3F09210B22D02B079F231A6D4D53421D65E076CD82D56";
$options = array(
'http' => array(
'method' => 'GET',
'header'=> "Content-Type: application/json\r\n" .
"api_key: ror-ae4fc6c19681a20fad30\r\n" .
"Accept: application/json\r\n"
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
$response = json_decode($result);
var_dump($response);
?>
fetch("https://api.runonrufus.com/v0/devices/1C3A38059155C47209E3F09210B22D02B079F231A6D4D53421D65E076CD82D56", {
method: "GET",
headers: {
"Content-Type": "application/json",
"api_key": "ror-ae4fc6c19681a20fad30",
},
})
.then((response) => console.log(response))
.catch((error) => console.error(error));
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace HttpClientExample
{
class Program
{
static async Task Main(string[] args)
{
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Content-Type", "application/json");
client.DefaultRequestHeaders.Add("api_key", "ror-ae4fc6c19681a20fad30");
var response = await client.GetAsync(
"https://api.runonrufus.com/v0/devices/1C3A38059155C47209E3F09210B22D02B079F231A6D4D53421D65E076CD82D56",
);
if (response.IsSuccessStatusCode)
{
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
}
else
{
Console.WriteLine("Error: " + response.StatusCode);
}
}
}
}
Last updated