lamoni/junos-space

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

Installs: 59

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 4

Forks: 1

Open Issues: 1

pkg:composer/lamoni/junos-space

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

This package is not auto-updated.

Last update: 2025-10-11 22:04:18 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'));