Lists devices
List all devices for this project. Devices get included here if they connect to the remote management API or if they have sent data to the ingestion API and had the device_id
field set.
Authorizations
Path parameters
projectIdintegerRequired
Project ID
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/devices HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"devices": [
{
"id": 1,
"deviceId": "38:f9:d3:d7:62:03",
"created": "2019-07-21T17:32:28Z",
"lastSeen": "2019-08-31T17:32:28Z",
"name": "m6d.1 desk sensor",
"deviceType": "DISCO-L475VG",
"sensors": [
{
"name": "Built-in accelerometer",
"maxSampleLengthS": 1,
"frequencies": [
62.5,
100
]
}
],
"remote_mgmt_connected": true,
"remote_mgmt_host": "text",
"supportsSnapshotStreaming": true,
"remoteMgmtMode": "disconnected",
"inferenceInfo": {
"projectId": 1,
"projectOwner": "text",
"projectName": "text",
"deployedVersion": 1,
"modelType": "classification"
}
}
]
}
Last updated
Was this helpful?