lamoni/junos-space

A PHP API for interacting through REST API with Juniper's Junos Space Network Management Platform

v1.0.1 2015-06-25 03:47 UTC

This package is not auto-updated.

Last update: 2024-04-27 14:12:13 UTC


README

A PHP API for interfacing with Junos Space through its REST API interface.

Examples

  • Get All Managed Devices
$space = new JunosSpace("192.168.0.100", "username", "password123!");

print_r($space->getDevices());
  • Execute GET REST call
$space = new JunosSpace("192.168.0.100", "username", "password123!");

print_r($space->get('/api/space/device-management/devices'));