Get Device Details

get

/api/device/DeviceViews

Gets the details of the specified device.

Request

Query Parameters
  • The level of detail to retrieve. Use Minimal to retrieve only the device name or Full to retrieve all the information on the device.
    Allowed Values: [ "Minimal", "Full" ]
    Example:
    Minimal
  • The name of the device to get details for.
    Example:
    router.example

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SuccessfulGetOperation
Type: object
Show Source
Nested Schema : type
Type: object
Show Source
Nested Schema : data
Type: array
The list of details of the specified device.
Show Source
Example:
[
    {
        "PropertyName":"Device Name",
        "PropertyValue":"router.example.com"
    },
    {
        "PropertyName":"Timestamp Added",
        "PropertyValue":"2022-10-27 07:23:09"
    },
    {
        "PropertyName":"Timestamp Modified",
        "PropertyValue":"2023-05-16 22:30:26"
    },
    {
        "PropertyName":"IP Address",
        "PropertyValue":"100.77.220.19"
    },
    {
        "PropertyName":"IPv6 Address",
        "PropertyValue":null
    },
    {
        "PropertyName":"Device ID",
        "PropertyValue":"43"
    },
    {
        "PropertyName":"Custom Name",
        "PropertyValue":""
    },
    {
        "PropertyName":"DNS Name",
        "PropertyValue":"dev1-col2.ua3.gbucdsint02phx.oraclevcn.com"
    },
    {
        "PropertyName":"Sys Name",
        "PropertyValue":"dev1-col2"
    },
    {
        "PropertyName":"Sys OID",
        "PropertyValue":"1.3.6.1.4.1.8072.3.2.10"
    },
    {
        "PropertyName":"Description",
        "PropertyValue":"Linux router 5.4.17-2136.302.7.2.1.el7uek.x86_64 #2 SMP Tue Jan 18 13:44:44 PST 2022 x86_64"
    },
    {
        "PropertyName":"Location",
        "PropertyValue":"Unknown"
    },
    {
        "PropertyName":"Contact",
        "PropertyValue":"root@localhost"
    },
    {
        "PropertyName":"Services",
        "PropertyValue":"0"
    },
    {
        "PropertyName":"IP Forwarding",
        "PropertyValue":"1"
    },
    {
        "PropertyName":"Serial Number",
        "PropertyValue":""
    },
    {
        "PropertyName":"Device Type Name",
        "PropertyValue":"Linux"
    },
    {
        "PropertyName":"Device Type Category",
        "PropertyValue":"Appliance"
    },
    {
        "PropertyName":"GeoLocation",
        "PropertyValue":"{\"type\": \"Point\", \"coordinates\": [0.0, 0.0]}"
    }
]
Nested Schema : items
Match One Schema
Show Source
Nested Schema : deviceDeviceViews
Type: object
Show Source
Nested Schema : deviceDeviceViewsFull
Type: object
Show Source

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top