Skip to main content

Retrieving all Devices (GET)

https://core.rock7.com/API3/Device/All

This endpoint retrieves a list of all devices associated with the account.

Example with Parameters

curl --request GET \
--url 'https://core.rock7.com/API3/Device/All?username=myUsername&password=myPassword' \
--header 'accept: application/json'

Response

{
"devices": [
{
"deviceType": "TIGERSHARK",
"serial": "300605",
"name": "RockFLEET 300605",
"id": "YAlRXzwrdjymbnKNwJaBKLNxvPkMeqgG",
"type": "device"
},
{
"deviceType": "GRIFFIN",
"serial": "103830",
"name": "RockAIR 103830",
"id": "MPAjovqQGZaLRnNGVmGWlKkpxwgdzDYX",
"type": "device"
}
]
}