Device Management API

/api/space/device-management

The following operations are supported on this resource:

GET /api/space/device-management (v1)


This resource provides HATEOAS links to collections and methods available in this service.

Access Control

The following capabilities are required to access this API:
"DefaultRead"


Example Usage

GET /api/space/device-management/

Content Types

  • Produces content types:
    application/vnd.net.juniper.space.device-management+xml;version=1
    application/vnd.net.juniper.space.device-management+json;version=1


  • Sample Output XML:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <device-management>
       <collection href="/api/space/device-management/devices" rel="devices"/>
       <method href="/api/space/device-management/discover-devices" rel="discover-devices"/>
       <method href="/api/space/device-management/devices/get-syslog-events" rel="get-syslog-events"/>
       <method href="/api/space/device-management/devices/stop-syslog-events" rel="stop-syslog-events"/>
       <method href="/api/space/device-management/devices/subscribe-change-notifications" rel="subscribe-change-notifications"/>
    </device-management>


  • Sample Output JSON:

    {
    "device-management":
       {
       "collection":
       {
          "@href":"/api/space/device-management/devices",
          "@rel":"devices"
       },
       "method":
       [
       {
          "@href":"/api/space/device-management/discover-devices","@rel":"discover-devices"
       },
       {
          "@href":"/api/space/device-management/devices/get-syslog-events",
          "@rel":"get-syslog-events"
       },
       {
          "@href":"/api/space/device-management/devices/stop-syslog-events",
          "@rel":"stop-syslog-events"
       },
       {
          "@href":"/api/space/device-management/devices/subscribe-change-notifications",
          "@rel":"subscribe-change-notifications"
       }
       ]
       }
    }