Devices
These enpoints manage records of devices registered to the current user.
Device Object
AmpliFi represents devices by a JSON object. The content of this object depends on the device type (e.g. Android, iOS, browser).
Get all devices
GET /devices
Get an array with records for all devices registered for this user.
Response body:
Get authenticated devices
POST /authenticateddevices
Get an array with records for all devices currently authenticated for this user. these devices can be used to login with the user's credentials.
Response body:
```JavaScript
{
"success": true,
"devices": [] //array of device objects for all authenticated devices
}