Skip to Content
edgebootDevicesGet Device

Get Device

GET/api/v1/integrations/devices/{serial_number}Devices

Returns one device by serial_number for the account resolved from the Bearer token. If the account cannot be resolved or the device is not found for that account, the API responds with 404 (success: false, message text such as "Device not found").

Authentication
Bearer access token (Okta)
Content-Type
application/json

Path parameters

ParameterTypeRequiredDescription
serial_numberstringYesDevice serial number.

Headers

HeaderRequiredValue
AuthorizationYesBearer <access_token>

Responses

HTTPDescription
200Device payload (`success`, `data`, `request_id`).
401Unauthorized — invalid or missing Bearer token.
404Device not found, or organization could not be resolved from the token.

Response payload

Success response (200)

Response fields

FieldTypeDescription
successbooleanTrue when request succeeds.
dataDeviceResponseDevice object for the provided serial number.
data.network_interfaceobjectInterface status for `eth0`, `eth1`, and `lte`.
request_idstringRequest correlation identifier.

Example

Last updated on